Import SMR data
library(readr)
SMR_data <- read_csv("~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_Files/CT_SMR_IR_per_yr-agg.csv",
col_types = cols(CD_GEOCODI = col_character()))
library(broom)
library(reshape2)
SMR_data_yr_wd <- dcast(SMR_data, CD_GEOCODI ~ YOD, value.var = "SMR_per_yr")
library(broom)
CTs_data_yr <- left_join(CTs_data, SMR_data_yr_wd, by=c("CD_GEOCODI"="CD_GEOCODI"))
CTs_shp_yr <- CTs
CTs_shp_yr@data <- CTs_data_yr
CTs_by_yr_map_tidy <- tidy(CTs_shp_yr)
Regions defined for each Polygons
CTs_shp_yr$polyID <- sapply(slot(CTs_shp_yr, "polygons"), function(x) slot(x, "ID"))
CTs_by_yr_map_tidy <- merge(CTs_by_yr_map_tidy, CTs_shp_yr, by.x = "id", by.y="polyID")
CTs_by_yr_map_tidy <- cbind(CTs_by_yr_map_tidy[1:20], apply(CTs_by_yr_map_tidy[21:37],2,SMR_cut_v1))
colnames(CTs_by_yr_map_tidy)[21:37] <- sapply(2001:2017, function(x) paste0("SMR_cuts_", x))
models_year <- readRDS("~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_Files/yrly_models.rds")
library(readr)
library(dplyr)
package ‘dplyr’ was built under R version 3.4.4
Attaching package: ‘dplyr’
The following objects are masked from ‘package:stats’:
filter, lag
The following objects are masked from ‘package:base’:
intersect, setdiff, setequal, union
library(stringi)
package ‘stringi’ was built under R version 3.4.4
library(rgdal)
package ‘rgdal’ was built under R version 3.4.4rgdal: version: 1.2-18, (SVN revision 718)
Geospatial Data Abstraction Library extensions to R successfully loaded
Loaded GDAL runtime: GDAL 2.1.3, released 2017/20/01
Path to GDAL shared files: /Library/Frameworks/R.framework/Versions/3.4/Resources/library/rgdal/gdal
GDAL binary built with GEOS: FALSE
Loaded PROJ.4 runtime: Rel. 4.9.3, 15 August 2016, [PJ_VERSION: 493]
Path to PROJ.4 shared files: /Library/Frameworks/R.framework/Versions/3.4/Resources/library/rgdal/proj
Linking to sp version: 1.2-7
census_tracts_CE <- readOGR("~/Documents/Harvard - SM80/Thesis/Census_data/CE_setores_censitarios_shape/", "23SEE250GC_SIR", use_iconv = TRUE, encoding = "latin1")
OGR data source with driver: ESRI Shapefile
Source: "/Users/Sudipta/Documents/Harvard - SM80/Thesis/Census_data/CE_setores_censitarios_shape", layer: "23SEE250GC_SIR"
with 13615 features
It has 13 fields
Integer64 fields read as strings: ID
census_tracts_data <- census_tracts_CE@data
for (i in 1:ncol(census_tracts_data)){
census_tracts_data[,i] <- stri_trans_general(census_tracts_data[,i], "latin-ascii")
}
census_tracts_data <- filter(census_tracts_data, NM_MICRO=="FORTALEZA")
package ‘bindrcpp’ was built under R version 3.4.4
census_corrections <- read_csv("~/Documents/Harvard - SM80/Thesis/Census_data/Census_Tract_correction_table.csv",
col_types = cols(CD_GEOCODB = col_character(),
CD_GEOCODB_NEW = col_character(),
CD_GEOCODD = col_character(), CD_GEOCODD_NEW = col_character(),
CD_GEOCODI = col_character(), CD_GEOCODM = col_character(),
CD_GEOCODM_NEW = col_character(),
CD_GEOCODS = col_character(), CD_GEOCODS_NEW = col_character(),
ID = col_character(), NM_BAIRRO = col_character(),
TIPO = col_character()))
for (i in 1:nrow(census_tracts_data)){
ID_CT <- census_tracts_data[i,"ID"]
ID_CODI <- census_tracts_data[i,"CD_GEOCODI"]
if (ID_CT %in% census_corrections$ID){
corr_row <- filter(census_corrections, ID==ID_CT)
if (ID_CODI == corr_row$CD_GEOCODI){
census_tracts_data[i,3:13] <- corr_row[,14:24]
}
else if (ID_CODI != corr_row$CD_GEOCODI){
print(paste0("ID and GEOCODI do not match for ID ", ID_CT, " and ", ID_CODI))
}
}
}
CTs_data <- filter(census_tracts_data, NM_MUNICIP=="FORTALEZA")
library(rgdal)
CTs <- census_tracts_CE
CTs@data[,1:13] <- sapply(CTs@data[,1:13], as.character)
CTs <- CTs[(CTs$CD_GEOCODI %in% CTs_data$CD_GEOCODI),]
CTs_data[,1:13] <- sapply(CTs_data[,1:13], as.character)
CTs@data <- CTs_data
plot(CTs)
library(INLA)
CTs_adj <- "/Users/Sudipta/CTs_graph.adj"
BYM_data_yearly <- lapply(2001:2017, function(x) filter(select(SMR_data, CD_GEOCODI, obs_count, exp_count, YOD), YOD==x))
BYM_data_yearly <- lapply(BYM_data_yearly, function(x) left_join(select(CTs_data, CD_GEOCODI), x, by=c("CD_GEOCODI"="CD_GEOCODI")))
BYM_data_yearly <- lapply(BYM_data_yearly, setNames, c("CD_GEOCODI", "y", "E", "year"))
for (i in 1:length(BYM_data_yearly)){
BYM_data_yearly[[i]][is.na(BYM_data_yearly[[i]]$y),"y"] = 0
BYM_data_yearly[[i]][is.na(BYM_data_yearly[[i]]$E),"E"] = 0
BYM_data_yearly[[i]][is.na(BYM_data_yearly[[i]]$year),"year"] = 2010+i
}
order_yearly <- lapply(BYM_data_yearly, function(x) match(CTs_data$CD_GEOCODI, x$CD_GEOCODI))
for (i in 1:length(BYM_data_yearly)){
BYM_data_yearly[[i]] <- BYM_data_yearly[[i]][order_yearly[[i]],]
}
bymID <- seq(1,3044)
BYM_data_yearly <- lapply(BYM_data_yearly, function(x) cbind(x, bymID))
formula_null <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj)
library(spdep)
package ‘spdep’ was built under R version 3.4.4Loading required package: spData
package ‘spData’ was built under R version 3.4.4To access larger datasets in this package, install the spDataLarge
package with: `install.packages('spDataLarge',
repos='https://nowosad.github.io/drat/', type='source'))`
CT_wm <- poly2nb(CTs_shp_yr, snap=0.001)
nb2INLA("CT_graph.adj", CT_wm)
CT_adj <- "CT_graph.adj"
Census_covar <- read_csv("~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit/Census_data/census_covariates_Fortaleza.csv")
Parsed with column specification:
cols(
.default = col_double(),
Total_HH_inc_in_CT = col_integer(),
Lit_grtr_5yrs = col_integer(),
Total_no_HH_in_CT = col_integer(),
PPH_Wtr_Spply_Ntwrk = col_integer(),
PPH_Sewerage_Conn = col_integer(),
PPH_Garbage_Col_Serv = col_integer(),
PPH_Elec = col_integer(),
Total_pop_branca = col_integer(),
Total_pop_preta = col_integer(),
Total_pop_amarela = col_integer(),
Total_pop_parda = col_integer(),
Total_pop_indigena = col_integer(),
TIPO = col_character(),
NM_BAIRRO = col_character(),
Total_pop = col_integer()
)
See spec(...) for full column specifications.
Census_covar[is.na(Census_covar$Mean_HH_inc),]$Mean_HH_inc <- 1
Census_covar[Census_covar$Mean_HH_inc==0,]$Mean_HH_inc <- 1
Census_covar$log_Mean_HH_inc <- log(Census_covar$Mean_HH_inc)
Census_covar$Cod_setor <- as.character(Census_covar$Cod_setor)
Census_covar$LII <- NA
for (i in 1:3044){
CT_Code <- CTs_shp_yr@data$CD_GEOCODI[i]
neighbors_codes <- CTs_shp_yr@data$CD_GEOCODI[CT_wm[[i]]]
total_nb_inc <- sum(Census_covar[(Census_covar$Cod_setor %in% neighbors_codes),]$Total_HH_inc_in_CT)
total_nb_hh <- sum(Census_covar[(Census_covar$Cod_setor %in% neighbors_codes),]$Total_no_HH_in_CT)
Mean_nb_inc <- total_nb_inc / total_nb_hh
LII <- Mean_nb_inc / Census_covar[(Census_covar$Cod_setor)==CT_Code,]$Mean_HH_inc
Census_covar[(Census_covar$Cod_setor==CT_Code),]$LII <- LII
}
Census_covar$LII[Census_covar$LII==Inf] <- NA
Census_covar$log_LII <- log(Census_covar$LII)
BYM_data_yearly <- lapply(BYM_data_yearly, function(x) left_join(x, Census_covar, by=c("CD_GEOCODI"="Cod_setor")))
formula_1 <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj) + log_Mean_HH_inc + log_LII + Perc_branca + Lit_rate + Perc_PPH_Elec + Perc_Wtr_Spply_Ntwrk + Perc_Garbage_Col_Serv + Perc_Sewerage_Conn
names(BYM_data_yearly) <- as.character(2001:2017)
models_year <- lapply(BYM_data_yearly, function(x) inla(formula_1, family="poisson", data=x, E=E, verbose=TRUE, control.compute=list(dic=TRUE), control.predictor=list(compute=TRUE)))
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d383a7119] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3334d0209]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34c0b72f]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3334d0209]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 1, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d32c4b881c] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d338f5659e]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37e0d48d1]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d312d4fcfc]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d334d72487] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3189f362b] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d37c9d4dad] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d33b56d8c5] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d342b18bf2] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d3165adf13] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d327eb63dc] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d34ee914fd] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/data.files/filee1d328611684] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7f8ba9e15db0
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1081.505431 fn= 1 theta= 4.010000 4.000000 range=[-2.137 6.620]
max.logdens= -1081.476500 fn= 2 theta= 3.990000 4.000000 range=[-2.137 6.621]
max.logdens= -1078.371491 fn= 5 theta= 3.002453 4.070003 range=[-2.141 6.683]
max.logdens= -1078.370326 fn= 6 theta= 3.002453 4.060003 range=[-2.142 6.685]
max.logdens= -1078.314258 fn= 7 theta= 2.992453 4.070003 range=[-2.141 6.684]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(2367,2367). I will try to fix it...max.logdens= -1075.230989 fn= 11 theta= 2.553557 4.101504 range=[-2.146 6.742]
max.logdens= -1075.142852 fn= 12 theta= 2.543557 4.101504 range=[-2.146 6.744]
max.logdens= -1070.581551 fn= 16 theta= 2.127106 4.131430 range=[-2.154 6.828]
max.logdens= -1070.437403 fn= 17 theta= 2.117106 4.131430 range=[-2.155 6.830]
max.logdens= -1064.117726 fn= 21 theta= 1.721977 4.159860 range=[-2.166 7.057]
max.logdens= -1064.088116 fn= 22 theta= 1.721977 4.149860 range=[-2.167 7.058]
max.logdens= -1063.895744 fn= 23 theta= 1.711977 4.159860 range=[-2.167 7.064]
max.logdens= -1055.714531 fn= 26 theta= 1.337105 4.186868 range=[-2.185 7.377]
max.logdens= -1055.468601 fn= 28 theta= 1.327105 4.186868 range=[-2.186 7.387]
max.logdens= -1045.965449 fn= 31 theta= 0.971476 4.212526 range=[-2.213 7.803]
max.logdens= -1045.682043 fn= 33 theta= 0.961476 4.212526 range=[-2.214 7.816]
max.logdens= -1036.119068 fn= 36 theta= 0.624129 4.236901 range=[-2.253 8.354]
max.logdens= -1035.843244 fn= 38 theta= 0.614129 4.236901 range=[-2.255 8.373]
max.logdens= -1028.011975 fn= 41 theta= 0.294149 4.260057 range=[-2.434 9.058]
max.logdens= -1027.805808 fn= 43 theta= 0.284149 4.260057 range=[-2.442 9.083]
max.logdens= -1023.490526 fn= 46 theta= -0.019332 4.282056 range=[-2.743 9.953]
max.logdens= -1023.416909 fn= 48 theta= -0.029332 4.282056 range=[-2.754 9.986]
max.logdens= -1023.005871 fn= 52 theta= -0.144371 4.290830 range=[-2.888 10.392]
max.logdens= -1022.998047 fn= 56 theta= -0.144371 4.300830 range=[-2.888 10.390]
max.logdens= -1022.997463 fn= 62 theta= -0.147760 4.301068 range=[-2.892 10.403]
Iter=1 |grad|=0.831 |x-x.old|=2.94 |f-f.old|=58.5
max.logdens= -1022.994776 fn= 70 theta= -0.150052 4.304556 range=[-2.895 10.411]
max.logdens= -1022.991273 fn= 72 theta= -0.150087 4.294609 range=[-2.895 10.413]
Iter=2 |grad|=0.833 |x-x.old|=0.003(pass) |f-f.old|=0.00319 Reached numerical limit!
Number of function evaluations = 86
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
91.990943 3.820202
3.820202 15.213604
Eigenvectors of the Hessian
0.998770 -0.049573
0.049573 0.998770
Eigenvalues of the Hessian
92.180556
15.023991
StDev/Correlation matrix (scaled inverse Hessian)
0.104810 -0.102117
0.257727
max.logdens= -1022.587090 fn= 96 theta= -0.175666 4.809960 range=[-2.923 10.452]
Compute corrected stdev for theta[0]: negative 1.188030 positive 1.304722
Compute corrected stdev for theta[1]: negative 2.070924 positive 1.000000
config 0=[ 0.00 -0.75] log(rel.dens)=-0.17, [2] accept, compute, 13.30s
config 1=[ -0.75 0.00] log(rel.dens)=-0.38, [3] accept, compute, 13.40s
config 2=[ 0.75 0.00] log(rel.dens)=-0.16, [0] accept, compute, 13.40s
config 3=[ 0.00 0.00] log(rel.dens)=-0.01, [1] accept, compute, 13.42s
config 4=[ 0.00 0.75] log(rel.dens)= 0.16, [2] accept, compute, 14.68s
config 5=[ -0.75 -0.75] log(rel.dens)=-0.33, [0] accept, compute, 14.59s
config 6=[ -0.75 0.75] log(rel.dens)=-0.08, [3] accept, compute, 14.60s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.48, [1] accept, compute, 14.77s
config 8=[ 0.00 -1.50] log(rel.dens)=-0.46, [0] accept, compute, 12.85s
config 9=[ -1.50 0.00] log(rel.dens)=-0.88, [3] accept, compute, 13.11s
config 10=[ 1.50 0.00] log(rel.dens)=-0.73, [1] accept, compute, 12.97s
config 11=[ 0.75 0.75] log(rel.dens)=-0.05, [2] accept, compute, 13.60s
config 12=[ 0.00 1.50] log(rel.dens)= 0.30, [0] accept, compute, 12.43s
config 13=[ -0.75 1.50] log(rel.dens)=-0.04, [3] accept, compute, 12.33s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.63, [1] accept, compute, 12.64s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.46, [2] accept, compute, 12.61s
config 16=[ 0.75 1.50] log(rel.dens)= 0.15, [0] accept, compute, 11.93s
config 17=[ -1.50 -0.75] log(rel.dens)=-0.93, [3] accept, compute, 12.20s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.97, [1] accept, compute, 12.09s
config 19=[ -1.50 0.75] log(rel.dens)=-0.72, [2] accept, compute, 11.87s
config 20=[ 1.50 0.75] log(rel.dens)=-0.53, [0] accept, compute, 12.27s
config 21=[ -1.50 -1.50] log(rel.dens)=-0.96, [3] accept, compute, 12.26s
config 22=[ 1.50 1.50] log(rel.dens)=-0.20, [1] accept, compute, 12.42s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.16, [2] accept, compute, 12.31s
config 24=[ -1.50 1.50] log(rel.dens)=-0.66, [0] accept, compute, 12.22s
max.logdens= -1022.525749 fn= 129 theta= -0.178863 4.874379 range=[-2.927 10.458]
config 25=[ 0.00 -2.25] log(rel.dens)=-0.51, [3] accept, compute, 12.76s
config 26=[ 2.25 0.00] log(rel.dens)=-1.59, [1] accept, compute, 12.42s
config 27=[ -2.25 0.00] log(rel.dens)=-1.82, [2] accept, compute, 12.64s
config 28=[ 0.00 2.25] log(rel.dens)= 0.48, [0] accept, compute, 12.22s
config 29=[ 2.25 0.75] log(rel.dens)=-1.20, [3] accept, compute, 12.11s
config 30=[ 0.75 -2.25] log(rel.dens)=-0.80, [2] accept, compute, 12.06s
config 31=[ -0.75 -2.25] log(rel.dens)=-0.59, [1] accept, compute, 12.33s
config 32=[ -2.25 -0.75] log(rel.dens)=-1.83, [0] accept, compute, 16.29s
config 33=[ 2.25 -0.75] log(rel.dens)=-1.75, [3] accept, compute, 15.50s
config 34=[ -0.75 2.25] log(rel.dens)= 0.14, [2] accept, compute, 15.93s
config 35=[ -2.25 0.75] log(rel.dens)=-1.77, [1] accept, compute, 16.10s
config 36=[ 0.75 2.25] log(rel.dens)= 0.43, [0] accept, compute, 15.60s
config 37=[ -2.25 -1.50] log(rel.dens)=-1.90, [3] accept, compute, 16.13s
config 38=[ 2.25 -1.50] log(rel.dens)=-2.03, [2] accept, compute, 16.99s
config 39=[ -1.50 -2.25] log(rel.dens)=-1.05, [1] accept, compute, 16.89s
config 40=[ 2.25 1.50] log(rel.dens)=-0.93, [0] accept, compute, 16.76s
config 41=[ -1.50 2.25] log(rel.dens)=-0.63, [3] accept, compute, 16.45s
max.logdens= -1022.377748 fn= 146 theta= -0.188455 5.067635 range=[-2.938 10.481]
config 42=[ 1.50 -2.25] log(rel.dens)=-1.45, [2] accept, compute, 15.50s
config 43=[ -2.25 1.50] log(rel.dens)=-1.76, [1] accept, compute, 15.51s
config 44=[ 1.50 2.25] log(rel.dens)=-0.05, [0] accept, compute, 11.70s
config 45=[ 0.00 3.00] log(rel.dens)= 0.62, [3] accept, compute, 11.59s
config 46=[ 3.00 0.00] log(rel.dens)=-2.57, [2] accept, compute, 11.71s
config 47=[ 0.00 -3.00] log(rel.dens)=-0.69, [1] accept, compute, 11.77s
config 48=[ -0.75 -3.00] log(rel.dens)=-0.76, [3] accept, compute, 10.81s
config 49=[ -3.00 0.00] log(rel.dens)=-3.27, [0] accept, compute, 11.26s
config 50=[ -3.00 0.75] log(rel.dens)=-3.42, [2] accept, compute, 10.92s
config 51=[ 3.00 0.75] log(rel.dens)=-2.27, [1] accept, compute, 11.30s
config 52=[ -0.75 3.00] log(rel.dens)= 0.13, [3] accept, compute, 11.69s
config 53=[ 0.75 -3.00] log(rel.dens)=-1.02, [0] accept, compute, 11.69s
config 54=[ 0.75 3.00] log(rel.dens)= 0.62, [2] accept, compute, 11.62s
config 55=[ 3.00 -0.75] log(rel.dens)=-2.87, [1] accept, compute, 11.66s
config 56=[ -3.00 -0.75] log(rel.dens)=-3.21, [3] accept, compute, 12.76s
config 57=[ 2.25 2.25] log(rel.dens)=-0.80, [0] accept, compute, 12.76s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.30, [2] accept, compute, 12.74s
config 59=[ -2.25 -2.25] log(rel.dens)=-1.98, [1] accept, compute, 13.29s
config 60=[ -2.25 2.25] log(rel.dens)=-1.79, [3] accept, compute, 14.06s
config 61=[ -1.50 3.00] log(rel.dens)=-0.56, [0] accept, compute, 14.65s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.29, [2] accept, compute, 14.28s
config 63=[ 1.50 -3.00] log(rel.dens)=-1.65, [1] accept, compute, 14.49s
config 64=[ 3.00 1.50] log(rel.dens)=-2.01, [3] accept, compute, 11.14s
config 65=[ -3.00 1.50] log(rel.dens)=-3.33, [2] accept, compute, 10.96s
config 66=[ 1.50 3.00] log(rel.dens)= 0.27, [0] accept, compute, 11.40s
config 67=[ -1.50 -3.00] log(rel.dens)=-1.15, [1] accept, compute, 11.21s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.19, [3] accept, compute, 13.59s
config 69=[ -2.25 -3.00] log(rel.dens)=-1.96, [2] accept, compute, 13.94s
config 70=[ 2.25 -3.00] log(rel.dens)=-2.57, [0] accept, compute, 14.05s
config 71=[ 0.00 -3.75] log(rel.dens)=-0.87, [1] accept, compute, 14.20s
config 72=[ -3.00 2.25] log(rel.dens)=-3.34, [3] accept, compute, 14.69s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.51, [2] accept, compute, 14.76s
max.logdens= -1022.252017 fn= 178 theta= -0.198048 5.260892 range=[-2.950 10.506]
config 74=[ 3.00 2.25] log(rel.dens)=-1.69, [0] accept, compute, 15.57s
config 75=[ -3.00 -2.25] log(rel.dens)=-3.20, [1] accept, compute, 15.61s
config 76=[ 2.25 3.00] log(rel.dens)=-0.45, [3] accept, compute, 14.65s
config 77=[ 0.00 3.75] log(rel.dens)= 0.75, [2] accept, compute, 14.32s
config 78=[ -2.25 3.00] log(rel.dens)=-1.84, [0] accept, compute, 14.62s
config 79=[ 3.75 0.00] log(rel.dens)=-4.00, [1] accept, compute, 14.90s
config 80=[ -3.75 0.00] log(rel.dens)=-5.24, [3] accept, compute, 15.58s
config 81=[ -0.75 3.75] log(rel.dens)= 0.23, [2] accept, compute, 16.44s
max.logdens= -1022.189457 fn= 186 theta= -0.120027 5.264764 range=[-2.854 10.210]
config 82=[ 0.75 -3.75] log(rel.dens)=-1.23, [0] accept, compute, 16.53s
config 83=[ 3.75 0.75] log(rel.dens)=-3.58, [1] accept, compute, 15.91s
config 84=[ 3.75 -0.75] log(rel.dens)=-4.23, [3] accept, compute, 14.37s
config 85=[ 0.75 3.75] log(rel.dens)= 0.81, [2] accept, compute, 13.19s
config 86=[ -3.75 -0.75] log(rel.dens)=-5.10, [0] accept, compute, 12.58s
config 87=[ -3.75 0.75] log(rel.dens)=-5.19, [1] accept, compute, 12.22s
config 88=[ -0.75 -3.75] log(rel.dens)=-0.90, [3] accept, compute, 14.87s
config 89=[ -1.50 3.75] log(rel.dens)=-0.50, [2] accept, compute, 15.35s
config 90=[ 3.75 1.50] log(rel.dens)=-3.25, [0] accept, compute, 15.44s
config 91=[ -1.50 -3.75] log(rel.dens)=-1.25, [1] accept, compute, 14.98s
config 92=[ 1.50 -3.75] log(rel.dens)=-1.88, [3] accept, compute, 12.87s
config 93=[ 1.50 3.75] log(rel.dens)= 0.50, [2] accept, compute, 12.93s
config 94=[ 3.75 -1.50] log(rel.dens)=-4.57, [0] accept, compute, 12.47s
config 95=[ -3.75 -1.50] log(rel.dens)=-4.97, [1] accept, compute, 12.87s
config 96=[ -3.75 1.50] log(rel.dens)=-5.43, [3] accept, compute, 15.69s
config 97=[ -3.00 -3.00] log(rel.dens)=-3.21, [2] accept, compute, 15.16s
config 98=[ 3.00 -3.00] log(rel.dens)=-3.80, [0] accept, compute, 14.99s
config 99=[ 3.00 3.00] log(rel.dens)=-1.47, [1] accept, compute, 15.27s
config 100=[ -3.00 3.00] log(rel.dens)=-3.48, [3] accept, compute, 14.19s
config 101=[ 2.25 -3.75] log(rel.dens)=-2.88, [2] accept, compute, 14.77s
config 102=[ 2.25 3.75] log(rel.dens)=-0.13, [0] accept, compute, 14.52s
config 103=[ -2.25 -3.75] log(rel.dens)=-2.06, [1] accept, compute, 14.84s
config 104=[ 3.75 -2.25] log(rel.dens)=-4.87, [3] accept, compute, 15.29s
config 105=[ 3.75 2.25] log(rel.dens)=-3.04, [2] accept, compute, 14.64s
config 106=[ -3.75 -2.25] log(rel.dens)=-5.01, [0] accept, compute, 14.90s
max.logdens= -1022.125688 fn= 210 theta= -0.207640 5.454148 range=[-2.962 10.533]
config 107=[ -4.50 0.00] log(rel.dens)=-7.44, reject, 0.56s
config 108=[ -2.25 3.75] log(rel.dens)=-1.97, [1] accept, compute, 15.07s
config 109=[ -3.75 2.25] log(rel.dens)=-5.38, [3] accept, compute, 15.48s
config 110=[ 0.00 4.50] log(rel.dens)= 0.88, [2] accept, compute, 16.32s
config 111=[ 0.00 -4.50] log(rel.dens)=-1.11, [0] accept, compute, 15.49s
config 112=[ 4.50 0.00] log(rel.dens)=-5.46, [1] accept, compute, 15.42s
max.logdens= -1022.036894 fn= 217 theta= -0.129619 5.458021 range=[-2.865 10.234]
config 113=[ 4.50 -0.75] log(rel.dens)=-5.81, [3] accept, compute, 14.67s
config 114=[ -0.75 4.50] log(rel.dens)= 0.42, [0] accept, compute, 13.64s
config 115=[ 0.75 -4.50] log(rel.dens)=-1.43, [2] accept, compute, 14.00s
config 116=[ 0.75 4.50] log(rel.dens)= 0.97, [1] accept, compute, 13.77s
config 117=[ 4.50 -1.50] log(rel.dens)=-6.16, reject, 0.53s
config 118=[ -1.50 4.50] log(rel.dens)=-0.47, [2] accept, compute, 14.74s
config 119=[ -0.75 -4.50] log(rel.dens)=-1.07, [3] accept, compute, 15.35s
config 120=[ 4.50 0.75] log(rel.dens)=-5.16, [0] accept, compute, 15.22s
config 121=[ -1.50 -4.50] log(rel.dens)=-1.45, [1] accept, compute, 15.52s
config 122=[ 1.50 4.50] log(rel.dens)= 0.72, [2] accept, compute, 16.08s
config 123=[ 4.50 1.50] log(rel.dens)=-4.78, [3] accept, compute, 16.72s
config 124=[ 1.50 -4.50] log(rel.dens)=-2.12, [0] accept, compute, 16.60s
config 125=[ 3.75 -3.00] log(rel.dens)=-5.21, [1] accept, compute, 16.32s
config 126=[ -3.00 -3.75] log(rel.dens)=-3.22, [2] accept, compute, 13.10s
config 127=[ 3.00 3.75] log(rel.dens)=-1.07, [3] accept, compute, 13.09s
config 128=[ -3.00 3.75] log(rel.dens)=-3.56, [0] accept, compute, 13.24s
config 129=[ -3.75 3.00] log(rel.dens)=-5.49, [1] accept, compute, 14.86s
config 130=[ 3.75 3.00] log(rel.dens)=-2.67, [2] accept, compute, 13.51s
config 131=[ -3.75 -3.00] log(rel.dens)=-4.89, [0] accept, compute, 12.80s
config 132=[ 3.00 -3.75] log(rel.dens)=-4.15, [3] accept, compute, 13.90s
config 133=[ 2.25 -4.50] log(rel.dens)=-3.10, [1] accept, compute, 12.28s
config 134=[ -2.25 -4.50] log(rel.dens)=-2.16, [2] accept, compute, 12.10s
config 135=[ 5.25 0.00] log(rel.dens)=-7.30, reject, 0.41s
config 136=[ -2.25 4.50] log(rel.dens)=-1.91, [0] accept, compute, 12.28s
config 137=[ 2.25 4.50] log(rel.dens)= 0.12, [3] accept, compute, 12.61s
config 138=[ 4.50 2.25] log(rel.dens)=-4.41, [1] accept, compute, 12.11s
config 139=[ 0.00 5.25] log(rel.dens)= 0.92, [2] accept, compute, 14.07s
config 140=[ 0.00 -5.25] log(rel.dens)=-1.25, [0] accept, compute, 14.50s
config 141=[ -0.75 -5.25] log(rel.dens)=-1.17, [3] accept, compute, 15.04s
config 142=[ 3.75 3.75] log(rel.dens)=-2.36, [1] accept, compute, 16.11s
config 143=[ -3.75 3.75] log(rel.dens)=-5.63, [2] accept, compute, 16.68s
max.logdens= -1021.875682 fn= 248 theta= -0.139212 5.651277 range=[-2.877 10.261]
config 144=[ -0.75 5.25] log(rel.dens)= 0.50, [0] accept, compute, 17.05s
config 145=[ -3.75 -3.75] log(rel.dens)=-4.83, [3] accept, compute, 16.34s
config 146=[ 0.75 -5.25] log(rel.dens)=-1.64, [1] accept, compute, 16.07s
config 147=[ 0.75 5.25] log(rel.dens)= 1.13, [2] accept, compute, 14.08s
config 148=[ 3.75 -3.75] log(rel.dens)=-5.53, [0] accept, compute, 14.95s
config 149=[ -3.00 -4.50] log(rel.dens)=-3.39, [3] accept, compute, 14.63s
config 150=[ 3.00 -4.50] log(rel.dens)=-4.33, [1] accept, compute, 14.60s
config 151=[ -3.00 4.50] log(rel.dens)=-3.55, [2] accept, compute, 14.81s
config 152=[ 3.00 4.50] log(rel.dens)=-0.78, [0] accept, compute, 14.02s
config 153=[ 4.50 3.00] log(rel.dens)=-4.17, [3] accept, compute, 14.30s
config 154=[ 1.50 5.25] log(rel.dens)= 0.93, [1] accept, compute, 13.76s
config 155=[ -1.50 5.25] log(rel.dens)=-0.43, [2] accept, compute, 14.32s
config 156=[ -1.50 -5.25] log(rel.dens)=-1.48, [0] accept, compute, 14.25s
config 157=[ 1.50 -5.25] log(rel.dens)=-2.36, [3] accept, compute, 14.18s
config 158=[ 2.25 5.25] log(rel.dens)= 0.29, [1] accept, compute, 13.01s
config 159=[ -2.25 5.25] log(rel.dens)=-1.94, [2] accept, compute, 11.35s
config 160=[ -2.25 -5.25] log(rel.dens)=-2.27, [0] accept, compute, 11.65s
config 161=[ 2.25 -5.25] log(rel.dens)=-3.42, [3] accept, compute, 11.73s
config 162=[ 4.50 3.75] log(rel.dens)=-3.71, [1] accept, compute, 11.74s
config 163=[ -3.75 -4.50] log(rel.dens)=-4.91, [2] accept, compute, 10.85s
config 164=[ -3.75 4.50] log(rel.dens)=-5.74, [0] accept, compute, 10.96s
config 165=[ 3.75 4.50] log(rel.dens)=-2.06, [3] accept, compute, 10.74s
config 166=[ 3.75 -4.50] log(rel.dens)=-5.83, [1] accept, compute, 10.96s
config 167=[ 0.00 -6.00] log(rel.dens)=-1.45, [2] accept, compute, 12.04s
config 168=[ 0.00 6.00] log(rel.dens)= 1.12, [0] accept, compute, 11.93s
config 169=[ 3.00 5.25] log(rel.dens)=-0.58, [3] accept, compute, 11.93s
config 170=[ 0.75 -6.00] log(rel.dens)=-1.86, [1] accept, compute, 11.96s
config 171=[ -3.00 5.25] log(rel.dens)=-3.65, [2] accept, compute, 11.52s
max.logdens= -1021.698613 fn= 276 theta= -0.148804 5.844534 range=[-2.888 10.289]
config 172=[ -0.75 -6.00] log(rel.dens)=-1.33, [0] accept, compute, 11.54s
config 173=[ 3.00 -5.25] log(rel.dens)=-4.60, [3] accept, compute, 12.02s
config 174=[ -3.00 -5.25] log(rel.dens)=-3.28, [1] accept, compute, 11.91s
config 175=[ 0.75 6.00] log(rel.dens)= 1.30, [2] accept, compute, 12.23s
config 176=[ -0.75 6.00] log(rel.dens)= 0.57, [0] accept, compute, 12.00s
config 177=[ 1.50 6.00] log(rel.dens)= 1.13, [3] accept, compute, 12.50s
config 178=[ -1.50 -6.00] log(rel.dens)=-1.60, [1] accept, compute, 12.45s
config 179=[ -1.50 6.00] log(rel.dens)=-0.42, [2] accept, compute, 11.62s
config 180=[ 1.50 -6.00] log(rel.dens)=-2.60, [0] accept, compute, 11.95s
config 181=[ 4.50 4.50] log(rel.dens)=-3.37, [3] accept, compute, 11.79s
config 182=[ 2.25 -6.00] log(rel.dens)=-3.61, [1] accept, compute, 11.49s
config 183=[ -2.25 -6.00] log(rel.dens)=-2.25, [2] accept, compute, 12.26s
config 184=[ -2.25 6.00] log(rel.dens)=-1.91, [0] accept, compute, 13.00s
config 185=[ 3.75 -5.25] log(rel.dens)=-6.06, reject, 0.51s
config 186=[ 2.25 6.00] log(rel.dens)= 0.61, [3] accept, compute, 13.48s
config 187=[ -3.75 -5.25] log(rel.dens)=-4.93, [1] accept, compute, 13.45s
config 188=[ -3.75 5.25] log(rel.dens)=-5.88, [2] accept, compute, 14.08s
config 189=[ 3.75 5.25] log(rel.dens)=-1.64, [0] accept, compute, 13.35s
config 190=[ 3.00 6.00] log(rel.dens)=-0.28, [1] accept, compute, 13.81s
config 191=[ -3.00 -6.00] log(rel.dens)=-3.33, [3] accept, compute, 13.92s
config 192=[ 3.00 -6.00] log(rel.dens)=-4.86, [2] accept, compute, 14.30s
config 193=[ -3.00 6.00] log(rel.dens)=-3.70, [0] accept, compute, 14.79s
config 194=[ 0.00 6.75] log(rel.dens)= 1.24, [3] accept, compute, 13.69s
config 195=[ 0.00 -6.75] log(rel.dens)=-1.62, [1] accept, compute, 13.83s
max.logdens= -1021.531675 fn= 300 theta= -0.158396 6.037791 range=[-2.899 10.319]
config 196=[ -0.75 6.75] log(rel.dens)= 0.55, [2] accept, compute, 12.65s
config 197=[ 0.75 -6.75] log(rel.dens)=-2.13, [0] accept, compute, 12.12s
config 198=[ -0.75 -6.75] log(rel.dens)=-1.50, [3] accept, compute, 12.24s
config 199=[ 0.75 6.75] log(rel.dens)= 1.47, [1] accept, compute, 12.31s
config 200=[ -1.50 6.75] log(rel.dens)=-0.54, [2] accept, compute, 11.80s
config 201=[ 4.50 5.25] log(rel.dens)=-3.03, [0] accept, compute, 12.02s
config 202=[ 1.50 6.75] log(rel.dens)= 1.33, [3] accept, compute, 11.91s
config 203=[ 1.50 -6.75] log(rel.dens)=-2.83, [1] accept, compute, 11.88s
config 204=[ -3.75 6.00] log(rel.dens)=-6.12, reject, 0.37s
config 205=[ -1.50 -6.75] log(rel.dens)=-1.73, [2] accept, compute, 12.25s
config 206=[ -3.75 -6.00] log(rel.dens)=-4.78, [0] accept, compute, 12.42s
config 207=[ 3.75 6.00] log(rel.dens)=-1.33, [1] accept, compute, 11.92s
config 208=[ -2.25 -6.75] log(rel.dens)=-2.36, [3] accept, compute, 12.34s
config 209=[ -2.25 6.75] log(rel.dens)=-1.89, [2] accept, compute, 12.45s
config 210=[ 2.25 6.75] log(rel.dens)= 0.81, [0] accept, compute, 13.07s
config 211=[ 2.25 -6.75] log(rel.dens)=-3.85, [1] accept, compute, 12.93s
config 212=[ 3.00 6.75] log(rel.dens)= 0.03, [3] accept, compute, 13.21s
config 213=[ -3.00 -6.75] log(rel.dens)=-3.36, [2] accept, compute, 12.91s
config 214=[ -3.00 6.75] log(rel.dens)=-3.91, [0] accept, compute, 12.20s
config 215=[ 3.00 -6.75] log(rel.dens)=-5.17, [1] accept, compute, 12.39s
config 216=[ 0.00 7.50] log(rel.dens)= 1.32, [3] accept, compute, 12.13s
config 217=[ 4.50 6.00] log(rel.dens)=-2.77, [2] accept, compute, 15.11s
config 218=[ 0.00 -7.50] log(rel.dens)=-1.86, [0] accept, compute, 17.18s
max.logdens= -1021.394804 fn= 323 theta= -0.167988 6.231047 range=[-2.911 10.350]
config 219=[ -0.75 -7.50] log(rel.dens)=-1.69, [1] accept, compute, 17.34s
config 220=[ -0.75 7.50] log(rel.dens)= 0.54, [3] accept, compute, 17.52s
config 221=[ 0.75 -7.50] log(rel.dens)=-2.29, [2] accept, compute, 16.49s
config 222=[ 0.75 7.50] log(rel.dens)= 1.61, [0] accept, compute, 15.07s
config 223=[ 1.50 -7.50] log(rel.dens)=-3.05, [1] accept, compute, 15.47s
config 224=[ 1.50 7.50] log(rel.dens)= 1.51, [3] accept, compute, 14.88s
config 225=[ -1.50 -7.50] log(rel.dens)=-1.88, [2] accept, compute, 13.02s
config 226=[ -1.50 7.50] log(rel.dens)=-0.43, [0] accept, compute, 11.99s
config 227=[ -3.75 -6.75] log(rel.dens)=-4.89, [1] accept, compute, 11.94s
config 228=[ 3.75 6.75] log(rel.dens)=-1.03, [3] accept, compute, 11.84s
config 229=[ -2.25 7.50] log(rel.dens)=-1.96, [2] accept, compute, 11.51s
config 230=[ 2.25 -7.50] log(rel.dens)=-4.13, [0] accept, compute, 11.55s
config 231=[ -2.25 -7.50] log(rel.dens)=-2.51, [3] accept, compute, 11.30s
config 232=[ 2.25 7.50] log(rel.dens)= 1.03, [1] accept, compute, 11.46s
config 233=[ -3.00 7.50] log(rel.dens)=-4.08, [2] accept, compute, 11.09s
config 234=[ -3.00 -7.50] log(rel.dens)=-3.52, [0] accept, compute, 11.02s
config 235=[ 3.00 7.50] log(rel.dens)= 0.23, [1] accept, compute, 10.96s
config 236=[ 3.00 -7.50] log(rel.dens)=-5.38, [3] accept, compute, 11.13s
config 237=[ 4.50 6.75] log(rel.dens)=-2.36, [2] accept, compute, 11.73s
max.logdens= -1021.292105 fn= 342 theta= -0.177580 6.424304 range=[-2.923 10.383]
config 238=[ 0.00 -8.25] log(rel.dens)=-2.03, [0] accept, compute, 11.49s
config 239=[ 0.00 8.25] log(rel.dens)= 1.40, [1] accept, compute, 11.30s
config 240=[ 0.75 -8.25] log(rel.dens)=-2.50, [3] accept, compute, 11.32s
config 241=[ 0.75 8.25] log(rel.dens)= 1.71, [2] accept, compute, 11.50s
config 242=[ -0.75 8.25] log(rel.dens)= 0.68, [0] accept, compute, 11.58s
config 243=[ 1.50 8.25] log(rel.dens)= 1.68, [3] accept, compute, 11.51s
config 244=[ -0.75 -8.25] log(rel.dens)=-1.86, [1] accept, compute, 11.81s
config 245=[ -1.50 -8.25] log(rel.dens)=-2.04, [2] accept, compute, 11.53s
config 246=[ -3.75 -7.50] log(rel.dens)=-4.84, [0] accept, compute, 11.87s
config 247=[ 3.75 7.50] log(rel.dens)=-0.74, [3] accept, compute, 11.57s
config 248=[ 1.50 -8.25] log(rel.dens)=-3.27, [1] accept, compute, 11.59s
config 249=[ -1.50 8.25] log(rel.dens)=-0.45, [2] accept, compute, 12.01s
config 250=[ 2.25 8.25] log(rel.dens)= 1.24, [0] accept, compute, 11.97s
config 251=[ -2.25 -8.25] log(rel.dens)=-2.62, [1] accept, compute, 12.00s
config 252=[ -2.25 8.25] log(rel.dens)=-2.20, [3] accept, compute, 12.23s
config 253=[ 2.25 -8.25] log(rel.dens)=-4.36, [2] accept, compute, 12.08s
config 254=[ 4.50 7.50] log(rel.dens)=-2.05, [0] accept, compute, 12.01s
config 255=[ 3.00 -8.25] log(rel.dens)=-5.60, [1] accept, compute, 12.08s
config 256=[ 3.00 8.25] log(rel.dens)= 0.49, [3] accept, compute, 12.10s
config 257=[ -3.00 8.25] log(rel.dens)=-4.06, [2] accept, compute, 11.78s
max.logdens= -1021.184323 fn= 362 theta= -0.187172 6.617560 range=[-2.935 10.417]
config 258=[ -3.00 -8.25] log(rel.dens)=-3.68, [0] accept, compute, 11.38s
config 259=[ 0.00 -9.00] log(rel.dens)=-2.23, [1] accept, compute, 11.56s
config 260=[ 0.00 9.00] log(rel.dens)= 1.46, [3] accept, compute, 11.80s
config 261=[ 0.75 9.00] log(rel.dens)= 1.82, [2] accept, compute, 12.95s
config 262=[ -0.75 -9.00] log(rel.dens)=-2.06, [0] accept, compute, 12.82s
config 263=[ -0.75 9.00] log(rel.dens)= 0.69, [1] accept, compute, 12.71s
config 264=[ 0.75 -9.00] log(rel.dens)=-2.72, [3] accept, compute, 12.94s
config 265=[ -3.75 -8.25] log(rel.dens)=-4.91, [2] accept, compute, 14.08s
config 266=[ 3.75 8.25] log(rel.dens)=-0.47, [0] accept, compute, 14.70s
config 267=[ -1.50 9.00] log(rel.dens)=-0.63, [1] accept, compute, 14.22s
max.logdens= -1021.177854 fn= 371 theta= -0.109152 6.621433 range=[-2.840 10.124]
config 268=[ -1.50 -9.00] log(rel.dens)=-2.22, [3] accept, compute, 14.74s
config 269=[ 1.50 -9.00] log(rel.dens)=-3.53, [2] accept, compute, 15.37s
config 270=[ -2.25 9.00] log(rel.dens)=-2.27, [1] accept, compute, 15.85s
config 271=[ 1.50 9.00] log(rel.dens)= 1.82, [0] accept, compute, 16.29s
config 272=[ -2.25 -9.00] log(rel.dens)=-2.86, [3] accept, compute, 16.16s
config 273=[ 2.25 9.00] log(rel.dens)= 1.46, [2] accept, compute, 13.13s
config 274=[ 2.25 -9.00] log(rel.dens)=-4.61, [1] accept, compute, 12.17s
config 275=[ 4.50 8.25] log(rel.dens)=-1.75, [0] accept, compute, 12.25s
config 276=[ -3.00 -9.00] log(rel.dens)=-3.79, [3] accept, compute, 11.50s
config 277=[ -3.00 9.00] log(rel.dens)=-4.32, [2] accept, compute, 11.96s
config 278=[ 3.00 -9.00] log(rel.dens)=-5.81, [1] accept, compute, 12.23s
config 279=[ 3.00 9.00] log(rel.dens)= 0.78, [0] accept, compute, 12.17s
config 280=[ 0.00 9.75] log(rel.dens)= 1.51, [3] accept, compute, 12.49s
config 281=[ -3.75 -9.00] log(rel.dens)=-5.00, [2] accept, compute, 12.00s
config 282=[ 3.75 9.00] log(rel.dens)=-0.27, [0] accept, compute, 11.96s
config 283=[ 0.00 -9.75] log(rel.dens)=-2.44, [1] accept, compute, 12.22s
max.logdens= -1021.086661 fn= 387 theta= -0.196765 6.810817 range=[-2.947 10.451]
config 284=[ -0.75 -9.75] log(rel.dens)=-2.26, [3] accept, compute, 12.11s
config 285=[ -0.75 9.75] log(rel.dens)= 0.69, [2] accept, compute, 11.22s
max.logdens= -1021.046136 fn= 390 theta= -0.118744 6.814689 range=[-2.851 10.156]
config 286=[ 0.75 9.75] log(rel.dens)= 1.92, [0] accept, compute, 11.15s
config 287=[ 0.75 -9.75] log(rel.dens)=-3.00, [1] accept, compute, 11.20s
config 288=[ -1.50 9.75] log(rel.dens)=-0.57, [3] accept, compute, 10.91s
config 289=[ 1.50 9.75] log(rel.dens)= 1.96, [2] accept, compute, 11.29s
config 290=[ 1.50 -9.75] log(rel.dens)=-3.69, [0] accept, compute, 11.37s
config 291=[ -1.50 -9.75] log(rel.dens)=-2.42, [1] accept, compute, 11.39s
config 292=[ 2.25 -9.75] log(rel.dens)=-4.77, [3] accept, compute, 11.40s
config 293=[ 2.25 9.75] log(rel.dens)= 1.55, [2] accept, compute, 11.91s
config 294=[ -2.25 -9.75] log(rel.dens)=-2.95, [0] accept, compute, 11.75s
config 295=[ -2.25 9.75] log(rel.dens)=-2.26, [1] accept, compute, 11.75s
config 296=[ 4.50 9.00] log(rel.dens)=-1.45, [3] accept, compute, 11.89s
config 297=[ 3.00 9.75] log(rel.dens)= 0.91, [2] accept, compute, 11.48s
config 298=[ 3.00 -9.75] log(rel.dens)=-5.97, [0] accept, compute, 11.75s
config 299=[ -3.00 -9.75] log(rel.dens)=-3.83, [1] accept, compute, 11.81s
config 300=[ -3.00 9.75] log(rel.dens)=-4.39, [3] accept, compute, 11.97s
config 301=[ 3.75 9.75] log(rel.dens)=-0.03, [2] accept, compute, 11.72s
config 302=[ -3.75 -9.75] log(rel.dens)=-5.13, [0] accept, compute, 11.55s
config 303=[ 0.00 10.50] log(rel.dens)= 1.52, [1] accept, compute, 11.70s
config 304=[ 0.00 -10.50] log(rel.dens)=-2.72, [3] accept, compute, 12.08s
max.logdens= -1021.015587 fn= 409 theta= -0.206357 7.004074 range=[-2.959 10.487]
config 305=[ -0.75 -10.50] log(rel.dens)=-2.50, [2] accept, compute, 11.57s
config 306=[ 0.75 -10.50] log(rel.dens)=-3.16, [0] accept, compute, 11.64s
config 307=[ -0.75 10.50] log(rel.dens)= 0.53, [1] accept, compute, 11.95s
max.logdens= -1020.936535 fn= 412 theta= -0.128336 7.007946 range=[-2.862 10.189]
config 308=[ 0.75 10.50] log(rel.dens)= 1.99, [3] accept, compute, 12.39s
config 309=[ -1.50 10.50] log(rel.dens)=-0.66, [2] accept, compute, 15.97s
config 310=[ 1.50 10.50] log(rel.dens)= 2.07, [1] accept, compute, 16.38s
config 311=[ -1.50 -10.50] log(rel.dens)=-2.64, [0] accept, compute, 17.19s
config 312=[ 1.50 -10.50] log(rel.dens)=-3.89, [3] accept, compute, 18.43s
config 313=[ 4.50 9.75] log(rel.dens)=-1.26, [2] accept, compute, 18.35s
config 314=[ 2.25 10.50] log(rel.dens)= 1.70, [1] accept, compute, 17.14s
config 315=[ 2.25 -10.50] log(rel.dens)=-4.89, [0] accept, compute, 17.24s
config 316=[ -2.25 10.50] log(rel.dens)=-2.54, [3] accept, compute, 15.58s
config 317=[ 3.00 -10.50] log(rel.dens)=-6.08, reject, 0.94s
config 318=[ -2.25 -10.50] log(rel.dens)=-3.21, [2] accept, compute, 14.30s
config 319=[ -3.00 10.50] log(rel.dens)=-4.69, [1] accept, compute, 13.82s
config 320=[ -3.00 -10.50] log(rel.dens)=-4.09, [0] accept, compute, 14.33s
config 321=[ 3.00 10.50] log(rel.dens)= 1.17, [3] accept, compute, 13.89s
config 322=[ 3.75 10.50] log(rel.dens)= 0.24, [2] accept, compute, 12.81s
config 323=[ -3.75 -10.50] log(rel.dens)=-5.30, [1] accept, compute, 13.21s
config 324=[ 0.00 11.25] log(rel.dens)= 1.51, [0] accept, compute, 12.87s
config 325=[ 0.00 -11.25] log(rel.dens)=-2.90, [3] accept, compute, 13.08s
config 326=[ 0.75 -11.25] log(rel.dens)=-3.36, [2] accept, compute, 14.07s
max.logdens= -1020.852652 fn= 431 theta= -0.137929 7.201203 range=[-2.874 10.222]
config 327=[ -0.75 11.25] log(rel.dens)= 0.59, [1] accept, compute, 14.76s
config 328=[ -0.75 -11.25] log(rel.dens)=-2.73, [0] accept, compute, 15.21s
config 329=[ 0.75 11.25] log(rel.dens)= 2.02, [3] accept, compute, 15.48s
config 330=[ 1.50 11.25] log(rel.dens)= 2.15, [2] accept, compute, 13.80s
config 331=[ -1.50 11.25] log(rel.dens)=-0.90, [1] accept, compute, 12.79s
config 332=[ 1.50 -11.25] log(rel.dens)=-4.08, [0] accept, compute, 13.15s
config 333=[ -1.50 -11.25] log(rel.dens)=-2.89, [3] accept, compute, 14.04s
config 334=[ 4.50 10.50] log(rel.dens)=-0.93, [2] accept, compute, 16.49s
config 335=[ 2.25 -11.25] log(rel.dens)=-5.12, [1] accept, compute, 16.50s
config 336=[ -2.25 11.25] log(rel.dens)=-2.72, [0] accept, compute, 16.49s
config 337=[ 2.25 11.25] log(rel.dens)= 1.91, [3] accept, compute, 16.87s
config 338=[ -2.25 -11.25] log(rel.dens)=-3.46, [2] accept, compute, 13.80s
config 339=[ -3.00 -11.25] log(rel.dens)=-4.33, [1] accept, compute, 13.40s
config 340=[ -3.00 11.25] log(rel.dens)=-4.97, [0] accept, compute, 13.83s
config 341=[ 3.00 11.25] log(rel.dens)= 1.26, [3] accept, compute, 13.16s
config 342=[ 3.75 11.25] log(rel.dens)= 0.44, [2] accept, compute, 15.67s
config 343=[ -3.75 -11.25] log(rel.dens)=-5.65, [1] accept, compute, 16.41s
config 344=[ 0.00 12.00] log(rel.dens)= 1.47, [0] accept, compute, 15.98s
config 345=[ 0.00 -12.00] log(rel.dens)=-3.15, [3] accept, compute, 15.89s
config 346=[ -0.75 12.00] log(rel.dens)= 0.45, [2] accept, compute, 14.95s
config 347=[ -0.75 -12.00] log(rel.dens)=-3.01, [1] accept, compute, 15.55s
config 348=[ 0.75 12.00] log(rel.dens)= 1.93, [0] accept, compute, 14.92s
config 349=[ 0.75 -12.00] log(rel.dens)=-3.65, [3] accept, compute, 15.17s
max.logdens= -1020.799943 fn= 454 theta= -0.147521 7.394459 range=[-2.885 10.256]
config 350=[ -1.50 12.00] log(rel.dens)=-1.04, [2] accept, compute, 13.44s
config 351=[ -1.50 -12.00] log(rel.dens)=-3.27, [1] accept, compute, 12.70s
config 352=[ 1.50 -12.00] log(rel.dens)=-4.28, [0] accept, compute, 12.87s
config 353=[ 1.50 12.00] log(rel.dens)= 2.20, [3] accept, compute, 12.61s
config 354=[ 4.50 11.25] log(rel.dens)=-0.78, [2] accept, compute, 12.67s
config 355=[ 2.25 -12.00] log(rel.dens)=-5.20, [1] accept, compute, 12.62s
config 356=[ -2.25 12.00] log(rel.dens)=-2.93, [0] accept, compute, 12.92s
config 357=[ -2.25 -12.00] log(rel.dens)=-3.69, [3] accept, compute, 12.63s
config 358=[ 2.25 12.00] log(rel.dens)= 2.01, [2] accept, compute, 14.06s
config 359=[ 3.00 12.00] log(rel.dens)= 1.47, [1] accept, compute, 14.31s
config 360=[ -3.00 -12.00] log(rel.dens)=-4.56, [0] accept, compute, 14.24s
config 361=[ -3.00 12.00] log(rel.dens)=-5.09, [3] accept, compute, 14.78s
config 362=[ -3.75 -12.00] log(rel.dens)=-5.84, [2] accept, compute, 15.98s
config 363=[ 3.75 12.00] log(rel.dens)= 0.56, [1] accept, compute, 16.72s
config 364=[ 0.00 12.75] log(rel.dens)= 1.40, [0] accept, compute, 17.91s
config 365=[ 0.00 -12.75] log(rel.dens)=-3.52, [3] accept, compute, 18.62s
config 366=[ 0.75 12.75] log(rel.dens)= 2.00, [2] accept, compute, 15.36s
config 367=[ -0.75 -12.75] log(rel.dens)=-3.34, [1] accept, compute, 14.53s
config 368=[ 0.75 -12.75] log(rel.dens)=-3.84, [0] accept, compute, 13.59s
config 369=[ -0.75 12.75] log(rel.dens)= 0.35, [3] accept, compute, 13.42s
max.logdens= -1020.780931 fn= 474 theta= -0.157113 7.587716 range=[-2.897 10.291]
config 370=[ 4.50 12.00] log(rel.dens)=-0.50, [2] accept, compute, 14.09s
config 371=[ -1.50 12.75] log(rel.dens)=-1.11, [1] accept, compute, 15.62s
config 372=[ 1.50 -12.75] log(rel.dens)=-4.53, [0] accept, compute, 15.65s
config 373=[ 1.50 12.75] log(rel.dens)= 2.22, [3] accept, compute, 15.99s
config 374=[ -1.50 -12.75] log(rel.dens)=-3.56, [2] accept, compute, 19.99s
config 375=[ -2.25 12.75] log(rel.dens)=-3.15, [1] accept, compute, 20.07s
config 376=[ -2.25 -12.75] log(rel.dens)=-4.05, [0] accept, compute, 20.11s
config 377=[ 2.25 12.75] log(rel.dens)= 1.98, [3] accept, compute, 20.50s
config 378=[ 2.25 -12.75] log(rel.dens)=-5.35, [2] accept, compute, 17.21s
config 379=[ 3.00 12.75] log(rel.dens)= 1.51, [1] accept, compute, 16.02s
config 380=[ -3.75 -12.75] log(rel.dens)=-6.23, reject, 0.38s
config 381=[ -3.00 -12.75] log(rel.dens)=-5.02, [0] accept, compute, 15.56s
config 382=[ -3.00 12.75] log(rel.dens)=-5.47, [3] accept, compute, 13.17s
config 383=[ 3.75 12.75] log(rel.dens)= 0.77, [2] accept, compute, 11.59s
config 384=[ 0.00 13.50] log(rel.dens)= 1.27, [1] accept, compute, 11.41s
config 385=[ 0.00 -13.50] log(rel.dens)=-3.77, [0] accept, compute, 11.22s
config 386=[ -0.75 -13.50] log(rel.dens)=-3.76, [3] accept, compute, 11.18s
config 387=[ 4.50 12.75] log(rel.dens)=-0.39, [2] accept, compute, 11.34s
config 388=[ 0.75 -13.50] log(rel.dens)=-4.12, [1] accept, compute, 11.78s
config 389=[ 0.75 13.50] log(rel.dens)= 1.93, [0] accept, compute, 11.68s
config 390=[ -0.75 13.50] log(rel.dens)= 0.19, [3] accept, compute, 12.02s
config 391=[ -1.50 -13.50] log(rel.dens)=-3.97, [2] accept, compute, 12.38s
config 392=[ 1.50 13.50] log(rel.dens)= 2.19, [1] accept, compute, 12.58s
config 393=[ 1.50 -13.50] log(rel.dens)=-4.70, [0] accept, compute, 12.82s
config 394=[ -1.50 13.50] log(rel.dens)=-1.45, [3] accept, compute, 12.37s
config 395=[ -2.25 -13.50] log(rel.dens)=-4.56, [2] accept, compute, 12.38s
config 396=[ -2.25 13.50] log(rel.dens)=-3.30, [1] accept, compute, 13.34s
config 397=[ 2.25 13.50] log(rel.dens)= 2.08, [0] accept, compute, 13.69s
config 398=[ 2.25 -13.50] log(rel.dens)=-5.59, [3] accept, compute, 14.00s
config 399=[ -3.00 13.50] log(rel.dens)=-5.72, [2] accept, compute, 14.96s
config 400=[ -3.00 -13.50] log(rel.dens)=-5.37, [1] accept, compute, 14.63s
config 401=[ 3.00 13.50] log(rel.dens)= 1.55, [0] accept, compute, 15.06s
config 402=[ 3.75 13.50] log(rel.dens)= 0.86, [3] accept, compute, 14.65s
config 403=[ 4.50 13.50] log(rel.dens)=-0.20, [2] accept, compute, 14.01s
config 404=[ 0.00 -14.25] log(rel.dens)=-4.16, [1] accept, compute, 13.26s
config 405=[ 0.00 14.25] log(rel.dens)= 1.10, [0] accept, compute, 13.01s
config 406=[ -0.75 -14.25] log(rel.dens)=-4.16, [3] accept, compute, 13.44s
config 407=[ -0.75 14.25] log(rel.dens)=-0.11, [2] accept, compute, 12.39s
config 408=[ 0.75 14.25] log(rel.dens)= 1.81, [1] accept, compute, 11.82s
config 409=[ 0.75 -14.25] log(rel.dens)=-4.45, [0] accept, compute, 11.89s
config 410=[ -1.50 -14.25] log(rel.dens)=-4.50, [3] accept, compute, 12.47s
config 411=[ -1.50 14.25] log(rel.dens)=-1.73, [2] accept, compute, 12.56s
config 412=[ 1.50 14.25] log(rel.dens)= 2.02, [1] accept, compute, 12.38s
config 413=[ 1.50 -14.25] log(rel.dens)=-5.01, [0] accept, compute, 12.80s
config 414=[ -2.25 -14.25] log(rel.dens)=-5.09, [3] accept, compute, 12.11s
config 415=[ 2.25 14.25] log(rel.dens)= 2.04, [2] accept, compute, 11.88s
config 416=[ -3.00 14.25] log(rel.dens)=-6.19, reject, 0.44s
config 417=[ -2.25 14.25] log(rel.dens)=-3.63, [1] accept, compute, 11.65s
config 418=[ 2.25 -14.25] log(rel.dens)=-5.73, [0] accept, compute, 11.44s
config 419=[ 3.00 14.25] log(rel.dens)= 1.62, [3] accept, compute, 12.06s
config 420=[ -3.00 -14.25] log(rel.dens)=-5.93, [2] accept, compute, 11.70s
config 421=[ 3.75 14.25] log(rel.dens)= 0.81, [1] accept, compute, 11.82s
config 422=[ 4.50 14.25] log(rel.dens)=-0.13, [0] accept, compute, 11.68s
config 423=[ 0.00 15.00] log(rel.dens)= 0.87, [3] accept, compute, 12.13s
config 424=[ 0.00 -15.00] log(rel.dens)=-4.64, [2] accept, compute, 11.95s
config 425=[ 0.75 15.00] log(rel.dens)= 1.63, [1] accept, compute, 12.07s
config 426=[ -0.75 15.00] log(rel.dens)=-0.40, [0] accept, compute, 11.85s
config 427=[ 0.75 -15.00] log(rel.dens)=-4.87, [3] accept, compute, 13.87s
config 428=[ -0.75 -15.00] log(rel.dens)=-4.77, [2] accept, compute, 18.53s
config 429=[ 1.50 -15.00] log(rel.dens)=-5.30, [1] accept, compute, 19.77s
config 430=[ 1.50 15.00] log(rel.dens)= 1.99, [0] accept, compute, 20.67s
config 431=[ -1.50 -15.00] log(rel.dens)=-5.02, [3] accept, compute, 20.72s
config 432=[ -1.50 15.00] log(rel.dens)=-1.96, [2] accept, compute, 17.63s
config 433=[ 2.25 -15.00] log(rel.dens)=-5.96, [1] accept, compute, 18.97s
config 434=[ -2.25 15.00] log(rel.dens)=-4.02, [0] accept, compute, 19.61s
config 435=[ -3.00 -15.00] log(rel.dens)=-6.62, reject, 1.04s
config 436=[ 2.25 15.00] log(rel.dens)= 1.95, [3] accept, compute, 19.12s
config 437=[ -2.25 -15.00] log(rel.dens)=-5.67, [2] accept, compute, 19.76s
config 438=[ 3.00 15.00] log(rel.dens)= 1.58, [1] accept, compute, 17.29s
config 439=[ 3.75 15.00] log(rel.dens)= 0.83, [0] accept, compute, 16.30s
config 440=[ 4.50 15.00] log(rel.dens)=-0.10, [3] accept, compute, 14.74s
config 441=[ 0.00 -15.75] log(rel.dens)=-5.26, [2] accept, compute, 13.70s
config 442=[ 0.00 15.75] log(rel.dens)= 0.57, [1] accept, compute, 13.64s
config 443=[ -0.75 15.75] log(rel.dens)=-0.71, [0] accept, compute, 13.16s
config 444=[ 0.75 15.75] log(rel.dens)= 1.36, [3] accept, compute, 12.31s
config 445=[ 0.75 -15.75] log(rel.dens)=-5.44, [2] accept, compute, 11.91s
config 446=[ -0.75 -15.75] log(rel.dens)=-5.41, [1] accept, compute, 11.81s
config 447=[ -1.50 15.75] log(rel.dens)=-2.48, [0] accept, compute, 14.30s
config 448=[ 1.50 -15.75] log(rel.dens)=-5.74, [3] accept, compute, 14.95s
config 449=[ -2.25 -15.75] log(rel.dens)=-6.48, reject, 0.42s
config 450=[ 1.50 15.75] log(rel.dens)= 1.77, [2] accept, compute, 14.81s
config 451=[ 2.25 -15.75] log(rel.dens)=-6.27, reject, 0.36s
config 452=[ -1.50 -15.75] log(rel.dens)=-5.87, [1] accept, compute, 14.90s
config 453=[ 2.25 15.75] log(rel.dens)= 1.79, [0] accept, compute, 12.36s
config 454=[ -2.25 15.75] log(rel.dens)=-4.48, [3] accept, compute, 11.89s
config 455=[ 3.00 15.75] log(rel.dens)= 1.45, [2] accept, compute, 12.77s
config 456=[ 0.00 -16.50] log(rel.dens)=-6.10, reject, 0.37s
config 457=[ 3.75 15.75] log(rel.dens)= 0.77, [1] accept, compute, 12.44s
config 458=[ 4.50 15.75] log(rel.dens)=-0.15, [0] accept, compute, 12.11s
config 459=[ 0.00 16.50] log(rel.dens)= 0.18, [3] accept, compute, 12.24s
config 460=[ 0.75 16.50] log(rel.dens)= 1.02, [2] accept, compute, 13.32s
config 461=[ -0.75 16.50] log(rel.dens)=-1.15, [1] accept, compute, 13.79s
config 462=[ 1.50 16.50] log(rel.dens)= 1.48, [0] accept, compute, 14.73s
config 463=[ -1.50 16.50] log(rel.dens)=-2.82, [3] accept, compute, 16.10s
config 464=[ -2.25 16.50] log(rel.dens)=-5.01, [2] accept, compute, 15.75s
config 465=[ 2.25 16.50] log(rel.dens)= 1.55, [1] accept, compute, 16.98s
config 466=[ 3.00 16.50] log(rel.dens)= 1.26, [0] accept, compute, 15.73s
config 467=[ 3.75 16.50] log(rel.dens)= 0.58, [3] accept, compute, 16.47s
config 468=[ 4.50 16.50] log(rel.dens)=-0.29, [2] accept, compute, 22.56s
config 469=[ 0.00 17.25] log(rel.dens)=-0.31, [1] accept, compute, 20.96s
config 470=[ -0.75 17.25] log(rel.dens)=-1.66, [0] accept, compute, 21.07s
config 471=[ 0.75 17.25] log(rel.dens)= 0.59, [3] accept, compute, 20.11s
config 472=[ 1.50 17.25] log(rel.dens)= 1.09, [2] accept, compute, 15.39s
config 473=[ -1.50 17.25] log(rel.dens)=-3.42, [1] accept, compute, 14.99s
config 474=[ 2.25 17.25] log(rel.dens)= 1.20, [0] accept, compute, 15.81s
config 475=[ -2.25 17.25] log(rel.dens)=-5.66, [3] accept, compute, 13.86s
config 476=[ 3.00 17.25] log(rel.dens)= 0.95, [2] accept, compute, 12.68s
config 477=[ 3.75 17.25] log(rel.dens)= 0.30, [1] accept, compute, 13.64s
config 478=[ 4.50 17.25] log(rel.dens)=-0.53, [0] accept, compute, 14.36s
config 479=[ 0.00 18.00] log(rel.dens)=-0.92, [3] accept, compute, 14.15s
config 480=[ 0.75 18.00] log(rel.dens)= 0.03, [2] accept, compute, 14.32s
config 481=[ -0.75 18.00] log(rel.dens)=-2.36, [1] accept, compute, 15.47s
config 482=[ -2.25 18.00] log(rel.dens)=-6.42, reject, 0.57s
config 483=[ -1.50 18.00] log(rel.dens)=-4.31, [0] accept, compute, 15.65s
config 484=[ 1.50 18.00] log(rel.dens)= 0.58, [3] accept, compute, 15.78s
config 485=[ 2.25 18.00] log(rel.dens)= 0.73, [2] accept, compute, 13.84s
config 486=[ 3.00 18.00] log(rel.dens)= 0.45, [1] accept, compute, 12.54s
config 487=[ 3.75 18.00] log(rel.dens)=-0.09, [0] accept, compute, 11.93s
config 488=[ 4.50 18.00] log(rel.dens)=-0.90, [3] accept, compute, 12.27s
config 489=[ 0.00 18.75] log(rel.dens)=-1.68, [2] accept, compute, 13.79s
config 490=[ -0.75 18.75] log(rel.dens)=-3.14, [1] accept, compute, 13.63s
config 491=[ 0.75 18.75] log(rel.dens)=-0.69, [0] accept, compute, 13.96s
config 492=[ -1.50 18.75] log(rel.dens)=-5.18, [3] accept, compute, 14.03s
config 493=[ 1.50 18.75] log(rel.dens)=-0.09, [2] accept, compute, 14.69s
config 494=[ 2.25 18.75] log(rel.dens)= 0.10, [1] accept, compute, 14.69s
config 495=[ 3.00 18.75] log(rel.dens)=-0.07, [0] accept, compute, 14.85s
config 496=[ 3.75 18.75] log(rel.dens)=-0.64, [3] accept, compute, 14.67s
config 497=[ 4.50 18.75] log(rel.dens)=-1.41, [2] accept, compute, 13.28s
config 498=[ -1.50 19.50] log(rel.dens)=-6.23, reject, 0.47s
config 499=[ 0.00 19.50] log(rel.dens)=-2.63, [1] accept, compute, 12.92s
config 500=[ -0.75 19.50] log(rel.dens)=-4.14, [0] accept, compute, 12.69s
config 501=[ 0.75 19.50] log(rel.dens)=-1.58, [3] accept, compute, 12.49s
config 502=[ 1.50 19.50] log(rel.dens)=-0.94, [2] accept, compute, 12.03s
config 503=[ 2.25 19.50] log(rel.dens)=-0.70, [1] accept, compute, 11.72s
config 504=[ 3.00 19.50] log(rel.dens)=-0.85, [0] accept, compute, 11.41s
config 505=[ 3.75 19.50] log(rel.dens)=-1.31, [3] accept, compute, 11.87s
config 506=[ 4.50 19.50] log(rel.dens)=-2.11, [2] accept, compute, 12.51s
config 507=[ 0.00 20.25] log(rel.dens)=-3.78, [1] accept, compute, 12.44s
config 508=[ -0.75 20.25] log(rel.dens)=-5.34, [0] accept, compute, 12.30s
config 509=[ 0.75 20.25] log(rel.dens)=-2.69, [3] accept, compute, 12.06s
config 510=[ 1.50 20.25] log(rel.dens)=-2.01, [2] accept, compute, 10.87s
config 511=[ 2.25 20.25] log(rel.dens)=-1.72, [1] accept, compute, 10.92s
config 512=[ 3.00 20.25] log(rel.dens)=-1.83, [0] accept, compute, 11.33s
config 513=[ 3.75 20.25] log(rel.dens)=-2.26, [3] accept, compute, 11.34s
config 514=[ -0.75 21.00] log(rel.dens)=-6.84, reject, 0.39s
config 515=[ 4.50 20.25] log(rel.dens)=-3.02, [2] accept, compute, 12.52s
config 516=[ 0.00 21.00] log(rel.dens)=-5.20, [1] accept, compute, 12.66s
config 517=[ 0.75 21.00] log(rel.dens)=-4.05, [0] accept, compute, 13.16s
config 518=[ 1.50 21.00] log(rel.dens)=-3.33, [3] accept, compute, 13.46s
config 519=[ 3.00 21.00] log(rel.dens)=-3.06, [1] accept, compute, 20.04s
config 520=[ 2.25 21.00] log(rel.dens)=-3.00, [2] accept, compute, 20.57s
config 521=[ 0.00 21.75] log(rel.dens)=-6.94, reject, 0.71s
config 522=[ 3.75 21.00] log(rel.dens)=-3.47, [0] accept, compute, 19.82s
config 523=[ 4.50 21.00] log(rel.dens)=-4.20, [3] accept, compute, 19.18s
config 524=[ 0.75 21.75] log(rel.dens)=-5.73, [2] accept, compute, 8.85s
Combine the densities with relative weights:
config 0/509=[ 0.00 -0.75] weight = 0.092 adjusted weight = 0.002 neff = 440.65
config 1/509=[ -0.75 0.00] weight = 0.074 adjusted weight = 0.001 neff = 467.18
config 2/509=[ 0.75 0.00] weight = 0.092 adjusted weight = 0.002 neff = 420.06
config 3/509=[ 0.00 0.00] weight = 0.107 adjusted weight = 0.002 neff = 443.22
config 4/509=[ 0.00 0.75] weight = 0.127 adjusted weight = 0.002 neff = 445.83
config 5/509=[ -0.75 -0.75] weight = 0.078 adjusted weight = 0.001 neff = 464.29
config 6/509=[ -0.75 0.75] weight = 0.100 adjusted weight = 0.002 neff = 469.63
config 7/509=[ 0.75 -0.75] weight = 0.067 adjusted weight = 0.001 neff = 417.77
config 8/509=[ 0.00 -1.50] weight = 0.069 adjusted weight = 0.001 neff = 438.36
config 9/509=[ -1.50 0.00] weight = 0.045 adjusted weight = 0.001 neff = 491.29
config 10/509=[ 1.50 0.00] weight = 0.052 adjusted weight = 0.001 neff = 397.67
config 11/509=[ 0.75 0.75] weight = 0.103 adjusted weight = 0.002 neff = 422.74
config 12/509=[ 0.00 1.50] weight = 0.146 adjusted weight = 0.003 neff = 448.54
config 13/509=[ -0.75 1.50] weight = 0.105 adjusted weight = 0.002 neff = 472.48
config 14/509=[ 0.75 -1.50] weight = 0.058 adjusted weight = 0.001 neff = 415.30
config 15/509=[ -0.75 -1.50] weight = 0.069 adjusted weight = 0.001 neff = 461.72
config 16/509=[ 0.75 1.50] weight = 0.126 adjusted weight = 0.002 neff = 425.33
config 17/509=[ -1.50 -0.75] weight = 0.043 adjusted weight = 0.001 neff = 488.52
config 18/509=[ 1.50 -0.75] weight = 0.041 adjusted weight = 0.001 neff = 395.30
config 19/509=[ -1.50 0.75] weight = 0.053 adjusted weight = 0.001 neff = 493.93
config 20/509=[ 1.50 0.75] weight = 0.064 adjusted weight = 0.001 neff = 400.16
config 21/509=[ -1.50 -1.50] weight = 0.042 adjusted weight = 0.001 neff = 485.80
config 22/509=[ 1.50 1.50] weight = 0.089 adjusted weight = 0.002 neff = 402.52
config 23/509=[ 1.50 -1.50] weight = 0.034 adjusted weight = 0.001 neff = 392.93
config 24/509=[ -1.50 1.50] weight = 0.056 adjusted weight = 0.001 neff = 496.76
config 25/509=[ 0.00 -2.25] weight = 0.065 adjusted weight = 0.001 neff = 435.79
config 26/509=[ 2.25 0.00] weight = 0.022 adjusted weight = 0.000 neff = 375.93
config 27/509=[ -2.25 0.00] weight = 0.018 adjusted weight = 0.000 neff = 515.86
config 28/509=[ 0.00 2.25] weight = 0.175 adjusted weight = 0.003 neff = 451.23
config 29/509=[ 2.25 0.75] weight = 0.033 adjusted weight = 0.001 neff = 378.10
config 30/509=[ 0.75 -2.25] weight = 0.049 adjusted weight = 0.001 neff = 412.95
config 31/509=[ -0.75 -2.25] weight = 0.060 adjusted weight = 0.001 neff = 459.25
config 32/509=[ -2.25 -0.75] weight = 0.017 adjusted weight = 0.000 neff = 513.05
config 33/509=[ 2.25 -0.75] weight = 0.019 adjusted weight = 0.000 neff = 373.51
config 34/509=[ -0.75 2.25] weight = 0.125 adjusted weight = 0.002 neff = 475.18
config 35/509=[ -2.25 0.75] weight = 0.018 adjusted weight = 0.000 neff = 518.66
config 36/509=[ 0.75 2.25] weight = 0.167 adjusted weight = 0.003 neff = 427.84
config 37/509=[ -2.25 -1.50] weight = 0.016 adjusted weight = 0.000 neff = 510.39
config 38/509=[ 2.25 -1.50] weight = 0.014 adjusted weight = 0.000 neff = 371.34
config 39/509=[ -1.50 -2.25] weight = 0.038 adjusted weight = 0.001 neff = 483.24
config 40/509=[ 2.25 1.50] weight = 0.043 adjusted weight = 0.001 neff = 380.50
config 41/509=[ -1.50 2.25] weight = 0.058 adjusted weight = 0.001 neff = 499.66
config 42/509=[ 1.50 -2.25] weight = 0.025 adjusted weight = 0.000 neff = 390.83
config 43/509=[ -2.25 1.50] weight = 0.019 adjusted weight = 0.000 neff = 521.54
config 44/509=[ 1.50 2.25] weight = 0.103 adjusted weight = 0.002 neff = 405.21
config 45/509=[ 0.00 3.00] weight = 0.203 adjusted weight = 0.004 neff = 453.99
config 46/509=[ 3.00 0.00] weight = 0.008 adjusted weight = 0.000 neff = 354.69
config 47/509=[ 0.00 -3.00] weight = 0.054 adjusted weight = 0.001 neff = 433.52
config 48/509=[ -0.75 -3.00] weight = 0.051 adjusted weight = 0.001 neff = 456.91
config 49/509=[ -3.00 0.00] weight = 0.004 adjusted weight = 0.000 neff = 540.91
config 50/509=[ -3.00 0.75] weight = 0.004 adjusted weight = 0.000 neff = 543.95
config 51/509=[ 3.00 0.75] weight = 0.011 adjusted weight = 0.000 neff = 356.93
config 52/509=[ -0.75 3.00] weight = 0.123 adjusted weight = 0.002 neff = 478.19
config 53/509=[ 0.75 -3.00] weight = 0.039 adjusted weight = 0.001 neff = 410.80
config 54/509=[ 0.75 3.00] weight = 0.201 adjusted weight = 0.003 neff = 430.54
config 55/509=[ 3.00 -0.75] weight = 0.006 adjusted weight = 0.000 neff = 352.55
config 56/509=[ -3.00 -0.75] weight = 0.004 adjusted weight = 0.000 neff = 538.02
config 57/509=[ 2.25 2.25] weight = 0.049 adjusted weight = 0.001 neff = 383.18
config 58/509=[ 2.25 -2.25] weight = 0.011 adjusted weight = 0.000 neff = 369.26
config 59/509=[ -2.25 -2.25] weight = 0.015 adjusted weight = 0.000 neff = 507.79
config 60/509=[ -2.25 2.25] weight = 0.018 adjusted weight = 0.000 neff = 524.53
config 61/509=[ -1.50 3.00] weight = 0.062 adjusted weight = 0.001 neff = 502.55
config 62/509=[ -3.00 -1.50] weight = 0.004 adjusted weight = 0.000 neff = 535.37
config 63/509=[ 1.50 -3.00] weight = 0.021 adjusted weight = 0.000 neff = 388.70
config 64/509=[ 3.00 1.50] weight = 0.014 adjusted weight = 0.000 neff = 359.31
config 65/509=[ -3.00 1.50] weight = 0.004 adjusted weight = 0.000 neff = 546.72
config 66/509=[ 1.50 3.00] weight = 0.143 adjusted weight = 0.002 neff = 407.67
config 67/509=[ -1.50 -3.00] weight = 0.034 adjusted weight = 0.001 neff = 480.78
config 68/509=[ 3.00 -1.50] weight = 0.004 adjusted weight = 0.000 neff = 350.50
config 69/509=[ -2.25 -3.00] weight = 0.015 adjusted weight = 0.000 neff = 505.15
config 70/509=[ 2.25 -3.00] weight = 0.008 adjusted weight = 0.000 neff = 367.31
config 71/509=[ 0.00 -3.75] weight = 0.045 adjusted weight = 0.001 neff = 431.36
config 72/509=[ -3.00 2.25] weight = 0.004 adjusted weight = 0.000 neff = 549.63
config 73/509=[ 3.00 -2.25] weight = 0.003 adjusted weight = 0.000 neff = 348.59
config 74/509=[ 3.00 2.25] weight = 0.020 adjusted weight = 0.000 neff = 361.63
config 75/509=[ -3.00 -2.25] weight = 0.004 adjusted weight = 0.000 neff = 532.56
config 76/509=[ 2.25 3.00] weight = 0.069 adjusted weight = 0.001 neff = 385.55
config 77/509=[ 0.00 3.75] weight = 0.230 adjusted weight = 0.004 neff = 456.82
config 78/509=[ -2.25 3.00] weight = 0.017 adjusted weight = 0.000 neff = 527.54
config 79/509=[ 3.75 0.00] weight = 0.002 adjusted weight = 0.000 neff = 334.56
config 80/509=[ -3.75 0.00] weight = 0.001 adjusted weight = 0.000 neff = 566.32
config 81/509=[ -0.75 3.75] weight = 0.136 adjusted weight = 0.002 neff = 481.05
config 82/509=[ 0.75 -3.75] weight = 0.032 adjusted weight = 0.001 neff = 408.74
config 83/509=[ 3.75 0.75] weight = 0.003 adjusted weight = 0.000 neff = 336.53
config 84/509=[ 3.75 -0.75] weight = 0.002 adjusted weight = 0.000 neff = 332.36
config 85/509=[ 0.75 3.75] weight = 0.245 adjusted weight = 0.004 neff = 433.24
config 86/509=[ -3.75 -0.75] weight = 0.001 adjusted weight = 0.000 neff = 563.35
config 87/509=[ -3.75 0.75] weight = 0.001 adjusted weight = 0.000 neff = 569.06
config 88/509=[ -0.75 -3.75] weight = 0.044 adjusted weight = 0.001 neff = 454.65
config 89/509=[ -1.50 3.75] weight = 0.066 adjusted weight = 0.001 neff = 505.45
config 90/509=[ 3.75 1.50] weight = 0.004 adjusted weight = 0.000 neff = 338.72
config 91/509=[ -1.50 -3.75] weight = 0.031 adjusted weight = 0.001 neff = 478.43
config 92/509=[ 1.50 -3.75] weight = 0.017 adjusted weight = 0.000 neff = 386.75
config 93/509=[ 1.50 3.75] weight = 0.178 adjusted weight = 0.003 neff = 410.31
config 94/509=[ 3.75 -1.50] weight = 0.001 adjusted weight = 0.000 neff = 330.43
config 95/509=[ -3.75 -1.50] weight = 0.001 adjusted weight = 0.000 neff = 560.44
config 96/509=[ -3.75 1.50] weight = 0.000 adjusted weight = 0.000 neff = 572.23
config 97/509=[ -3.00 -3.00] weight = 0.004 adjusted weight = 0.000 neff = 529.95
config 98/509=[ 3.00 -3.00] weight = 0.002 adjusted weight = 0.000 neff = 346.75
config 99/509=[ 3.00 3.00] weight = 0.025 adjusted weight = 0.000 neff = 364.16
config 100/509=[ -3.00 3.00] weight = 0.003 adjusted weight = 0.000 neff = 552.75
config 101/509=[ 2.25 -3.75] weight = 0.006 adjusted weight = 0.000 neff = 365.58
config 102/509=[ 2.25 3.75] weight = 0.095 adjusted weight = 0.002 neff = 388.01
config 103/509=[ -2.25 -3.75] weight = 0.014 adjusted weight = 0.000 neff = 502.77
config 104/509=[ 3.75 -2.25] weight = 0.001 adjusted weight = 0.000 neff = 328.57
config 105/509=[ 3.75 2.25] weight = 0.005 adjusted weight = 0.000 neff = 341.16
config 106/509=[ -3.75 -2.25] weight = 0.001 adjusted weight = 0.000 neff = 557.82
config 107/509=[ -2.25 3.75] weight = 0.015 adjusted weight = 0.000 neff = 530.70
config 108/509=[ -3.75 2.25] weight = 0.000 adjusted weight = 0.000 neff = 575.02
config 109/509=[ 0.00 4.50] weight = 0.261 adjusted weight = 0.005 neff = 459.66
config 110/509=[ 0.00 -4.50] weight = 0.036 adjusted weight = 0.001 neff = 429.44
config 111/509=[ 4.50 0.00] weight = 0.000 adjusted weight = 0.000 neff = 314.91
config 112/509=[ 4.50 -0.75] weight = 0.000 adjusted weight = 0.000 neff = 312.98
config 113/509=[ -0.75 4.50] weight = 0.165 adjusted weight = 0.003 neff = 483.79
config 114/509=[ 0.75 -4.50] weight = 0.026 adjusted weight = 0.000 neff = 406.83
config 115/509=[ 0.75 4.50] weight = 0.285 adjusted weight = 0.005 neff = 436.03
config 116/509=[ -1.50 4.50] weight = 0.068 adjusted weight = 0.001 neff = 508.42
config 117/509=[ -0.75 -4.50] weight = 0.037 adjusted weight = 0.001 neff = 452.56
config 118/509=[ 4.50 0.75] weight = 0.001 adjusted weight = 0.000 neff = 317.00
config 119/509=[ -1.50 -4.50] weight = 0.025 adjusted weight = 0.000 neff = 476.32
config 120/509=[ 1.50 4.50] weight = 0.222 adjusted weight = 0.004 neff = 412.98
config 121/509=[ 4.50 1.50] weight = 0.001 adjusted weight = 0.000 neff = 319.04
config 122/509=[ 1.50 -4.50] weight = 0.013 adjusted weight = 0.000 neff = 384.98
config 123/509=[ 3.75 -3.00] weight = 0.001 adjusted weight = 0.000 neff = 326.91
config 124/509=[ -3.00 -3.75] weight = 0.004 adjusted weight = 0.000 neff = 527.43
config 125/509=[ 3.00 3.75] weight = 0.037 adjusted weight = 0.001 neff = 366.45
config 126/509=[ -3.00 3.75] weight = 0.003 adjusted weight = 0.000 neff = 555.78
config 127/509=[ -3.75 3.00] weight = 0.000 adjusted weight = 0.000 neff = 578.05
config 128/509=[ 3.75 3.00] weight = 0.007 adjusted weight = 0.000 neff = 343.40
config 129/509=[ -3.75 -3.00] weight = 0.001 adjusted weight = 0.000 neff = 555.05
config 130/509=[ 3.00 -3.75] weight = 0.002 adjusted weight = 0.000 neff = 345.17
config 131/509=[ 2.25 -4.50] weight = 0.005 adjusted weight = 0.000 neff = 363.85
config 132/509=[ -2.25 -4.50] weight = 0.013 adjusted weight = 0.000 neff = 500.49
config 133/509=[ -2.25 4.50] weight = 0.016 adjusted weight = 0.000 neff = 533.60
config 134/509=[ 2.25 4.50] weight = 0.123 adjusted weight = 0.002 neff = 390.60
config 135/509=[ 4.50 2.25] weight = 0.001 adjusted weight = 0.000 neff = 321.15
config 136/509=[ 0.00 5.25] weight = 0.273 adjusted weight = 0.005 neff = 462.62
config 137/509=[ 0.00 -5.25] weight = 0.031 adjusted weight = 0.001 neff = 427.53
config 138/509=[ -0.75 -5.25] weight = 0.034 adjusted weight = 0.001 neff = 450.54
config 139/509=[ 3.75 3.75] weight = 0.010 adjusted weight = 0.000 neff = 345.77
config 140/509=[ -3.75 3.75] weight = 0.000 adjusted weight = 0.000 neff = 581.12
config 141/509=[ -0.75 5.25] weight = 0.179 adjusted weight = 0.003 neff = 486.71
config 142/509=[ -3.75 -3.75] weight = 0.001 adjusted weight = 0.000 neff = 552.43
config 143/509=[ 0.75 -5.25] weight = 0.021 adjusted weight = 0.000 neff = 405.12
config 144/509=[ 0.75 5.25] weight = 0.335 adjusted weight = 0.006 neff = 438.84
config 145/509=[ 3.75 -3.75] weight = 0.000 adjusted weight = 0.000 neff = 325.37
config 146/509=[ -3.00 -4.50] weight = 0.004 adjusted weight = 0.000 neff = 525.24
config 147/509=[ 3.00 -4.50] weight = 0.001 adjusted weight = 0.000 neff = 343.49
config 148/509=[ -3.00 4.50] weight = 0.003 adjusted weight = 0.000 neff = 558.71
config 149/509=[ 3.00 4.50] weight = 0.050 adjusted weight = 0.001 neff = 368.94
config 150/509=[ 4.50 3.00] weight = 0.002 adjusted weight = 0.000 neff = 323.52
config 151/509=[ 1.50 5.25] weight = 0.275 adjusted weight = 0.005 neff = 415.68
config 152/509=[ -1.50 5.25] weight = 0.070 adjusted weight = 0.001 neff = 511.38
config 153/509=[ -1.50 -5.25] weight = 0.025 adjusted weight = 0.000 neff = 474.15
config 154/509=[ 1.50 -5.25] weight = 0.010 adjusted weight = 0.000 neff = 383.40
config 155/509=[ 2.25 5.25] weight = 0.145 adjusted weight = 0.003 neff = 393.34
config 156/509=[ -2.25 5.25] weight = 0.016 adjusted weight = 0.000 neff = 536.62
config 157/509=[ -2.25 -5.25] weight = 0.011 adjusted weight = 0.000 neff = 498.39
config 158/509=[ 2.25 -5.25] weight = 0.004 adjusted weight = 0.000 neff = 362.50
config 159/509=[ 4.50 3.75] weight = 0.003 adjusted weight = 0.000 neff = 325.60
config 160/509=[ -3.75 -4.50] weight = 0.001 adjusted weight = 0.000 neff = 550.11
config 161/509=[ -3.75 4.50] weight = 0.000 adjusted weight = 0.000 neff = 584.17
config 162/509=[ 3.75 4.50] weight = 0.014 adjusted weight = 0.000 neff = 348.20
config 163/509=[ 3.75 -4.50] weight = 0.000 adjusted weight = 0.000 neff = 324.00
config 164/509=[ 0.00 -6.00] weight = 0.025 adjusted weight = 0.000 neff = 425.91
config 165/509=[ 0.00 6.00] weight = 0.333 adjusted weight = 0.006 neff = 465.40
config 166/509=[ 3.00 5.25] weight = 0.061 adjusted weight = 0.001 neff = 371.59
config 167/509=[ 0.75 -6.00] weight = 0.017 adjusted weight = 0.000 neff = 403.62
config 168/509=[ -3.00 5.25] weight = 0.003 adjusted weight = 0.000 neff = 561.80
config 169/509=[ -0.75 -6.00] weight = 0.029 adjusted weight = 0.000 neff = 448.78
config 170/509=[ 3.00 -5.25] weight = 0.001 adjusted weight = 0.000 neff = 342.17
config 171/509=[ -3.00 -5.25] weight = 0.004 adjusted weight = 0.000 neff = 522.77
config 172/509=[ 0.75 6.00] weight = 0.399 adjusted weight = 0.007 neff = 441.62
config 173/509=[ -0.75 6.00] weight = 0.191 adjusted weight = 0.003 neff = 489.66
config 174/509=[ 1.50 6.00] weight = 0.337 adjusted weight = 0.006 neff = 418.41
config 175/509=[ -1.50 -6.00] weight = 0.022 adjusted weight = 0.000 neff = 472.25
config 176/509=[ -1.50 6.00] weight = 0.071 adjusted weight = 0.001 neff = 514.39
config 177/509=[ 1.50 -6.00] weight = 0.008 adjusted weight = 0.000 neff = 382.05
config 178/509=[ 4.50 4.50] weight = 0.004 adjusted weight = 0.000 neff = 327.90
config 179/509=[ 2.25 -6.00] weight = 0.003 adjusted weight = 0.000 neff = 361.19
config 180/509=[ -2.25 -6.00] weight = 0.011 adjusted weight = 0.000 neff = 496.23
config 181/509=[ -2.25 6.00] weight = 0.016 adjusted weight = 0.000 neff = 539.57
config 182/509=[ 2.25 6.00] weight = 0.200 adjusted weight = 0.003 neff = 395.86
config 183/509=[ -3.75 -5.25] weight = 0.001 adjusted weight = 0.000 neff = 547.80
config 184/509=[ -3.75 5.25] weight = 0.000 adjusted weight = 0.000 neff = 587.25
config 185/509=[ 3.75 5.25] weight = 0.021 adjusted weight = 0.000 neff = 350.45
config 186/509=[ 3.00 6.00] weight = 0.082 adjusted weight = 0.001 neff = 374.12
config 187/509=[ -3.00 -6.00] weight = 0.004 adjusted weight = 0.000 neff = 520.69
config 188/509=[ 3.00 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 341.08
config 189/509=[ -3.00 6.00] weight = 0.003 adjusted weight = 0.000 neff = 564.81
config 190/509=[ 0.00 6.75] weight = 0.375 adjusted weight = 0.006 neff = 468.27
config 191/509=[ 0.00 -6.75] weight = 0.021 adjusted weight = 0.000 neff = 424.48
config 192/509=[ -0.75 6.75] weight = 0.188 adjusted weight = 0.003 neff = 492.71
config 193/509=[ 0.75 -6.75] weight = 0.013 adjusted weight = 0.000 neff = 402.44
config 194/509=[ -0.75 -6.75] weight = 0.024 adjusted weight = 0.000 neff = 447.24
config 195/509=[ 0.75 6.75] weight = 0.472 adjusted weight = 0.008 neff = 444.43
config 196/509=[ -1.50 6.75] weight = 0.063 adjusted weight = 0.001 neff = 517.59
config 197/509=[ 4.50 5.25] weight = 0.005 adjusted weight = 0.000 neff = 330.22
config 198/509=[ 1.50 6.75] weight = 0.410 adjusted weight = 0.007 neff = 421.16
config 199/509=[ 1.50 -6.75] weight = 0.006 adjusted weight = 0.000 neff = 380.92
config 200/509=[ -1.50 -6.75] weight = 0.019 adjusted weight = 0.000 neff = 470.59
config 201/509=[ -3.75 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 545.41
config 202/509=[ 3.75 6.00] weight = 0.029 adjusted weight = 0.000 neff = 352.90
config 203/509=[ -2.25 -6.75] weight = 0.010 adjusted weight = 0.000 neff = 494.46
config 204/509=[ -2.25 6.75] weight = 0.016 adjusted weight = 0.000 neff = 542.53
config 205/509=[ 2.25 6.75] weight = 0.244 adjusted weight = 0.004 neff = 398.59
config 206/509=[ 2.25 -6.75] weight = 0.002 adjusted weight = 0.000 neff = 360.21
config 207/509=[ 3.00 6.75] weight = 0.112 adjusted weight = 0.002 neff = 376.62
config 208/509=[ -3.00 -6.75] weight = 0.004 adjusted weight = 0.000 neff = 518.74
config 209/509=[ -3.00 6.75] weight = 0.002 adjusted weight = 0.000 neff = 568.03
config 210/509=[ 3.00 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 340.36
config 211/509=[ 0.00 7.50] weight = 0.408 adjusted weight = 0.007 neff = 471.21
config 212/509=[ 4.50 6.00] weight = 0.007 adjusted weight = 0.000 neff = 332.70
config 213/509=[ 0.00 -7.50] weight = 0.017 adjusted weight = 0.000 neff = 423.42
config 214/509=[ -0.75 -7.50] weight = 0.020 adjusted weight = 0.000 neff = 445.99
config 215/509=[ -0.75 7.50] weight = 0.187 adjusted weight = 0.003 neff = 495.78
config 216/509=[ 0.75 -7.50] weight = 0.011 adjusted weight = 0.000 neff = 401.39
config 217/509=[ 0.75 7.50] weight = 0.541 adjusted weight = 0.009 neff = 447.28
config 218/509=[ 1.50 -7.50] weight = 0.005 adjusted weight = 0.000 neff = 380.11
config 219/509=[ 1.50 7.50] weight = 0.490 adjusted weight = 0.008 neff = 423.94
config 220/509=[ -1.50 -7.50] weight = 0.016 adjusted weight = 0.000 neff = 469.18
config 221/509=[ -1.50 7.50] weight = 0.071 adjusted weight = 0.001 neff = 520.44
config 222/509=[ -3.75 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 543.52
config 223/509=[ 3.75 6.75] weight = 0.039 adjusted weight = 0.001 neff = 355.39
config 224/509=[ -2.25 7.50] weight = 0.015 adjusted weight = 0.000 neff = 545.60
config 225/509=[ 2.25 -7.50] weight = 0.002 adjusted weight = 0.000 neff = 359.64
config 226/509=[ -2.25 -7.50] weight = 0.009 adjusted weight = 0.000 neff = 492.96
config 227/509=[ 2.25 7.50] weight = 0.305 adjusted weight = 0.005 neff = 401.28
config 228/509=[ -3.00 7.50] weight = 0.002 adjusted weight = 0.000 neff = 571.22
config 229/509=[ -3.00 -7.50] weight = 0.003 adjusted weight = 0.000 neff = 517.17
config 230/509=[ 3.00 7.50] weight = 0.137 adjusted weight = 0.002 neff = 379.31
config 231/509=[ 3.00 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 339.83
config 232/509=[ 4.50 6.75] weight = 0.010 adjusted weight = 0.000 neff = 334.95
config 233/509=[ 0.00 -8.25] weight = 0.014 adjusted weight = 0.000 neff = 422.57
config 234/509=[ 0.00 8.25] weight = 0.440 adjusted weight = 0.008 neff = 474.14
config 235/509=[ 0.75 -8.25] weight = 0.009 adjusted weight = 0.000 neff = 400.76
config 236/509=[ 0.75 8.25] weight = 0.600 adjusted weight = 0.010 neff = 450.18
config 237/509=[ -0.75 8.25] weight = 0.215 adjusted weight = 0.004 neff = 498.61
config 238/509=[ 1.50 8.25] weight = 0.580 adjusted weight = 0.010 neff = 426.73
config 239/509=[ -0.75 -8.25] weight = 0.017 adjusted weight = 0.000 neff = 445.01
config 240/509=[ -1.50 -8.25] weight = 0.014 adjusted weight = 0.000 neff = 468.06
config 241/509=[ -3.75 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 541.61
config 242/509=[ 3.75 7.50] weight = 0.051 adjusted weight = 0.001 neff = 357.90
config 243/509=[ 1.50 -8.25] weight = 0.004 adjusted weight = 0.000 neff = 379.64
config 244/509=[ -1.50 8.25] weight = 0.069 adjusted weight = 0.001 neff = 523.48
config 245/509=[ 2.25 8.25] weight = 0.376 adjusted weight = 0.006 neff = 403.98
config 246/509=[ -2.25 -8.25] weight = 0.008 adjusted weight = 0.000 neff = 491.65
config 247/509=[ -2.25 8.25] weight = 0.012 adjusted weight = 0.000 neff = 548.90
config 248/509=[ 2.25 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 359.36
config 249/509=[ 4.50 7.50] weight = 0.014 adjusted weight = 0.000 neff = 337.36
config 250/509=[ 3.00 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 339.71
config 251/509=[ 3.00 8.25] weight = 0.177 adjusted weight = 0.003 neff = 381.91
config 252/509=[ -3.00 8.25] weight = 0.002 adjusted weight = 0.000 neff = 574.10
config 253/509=[ -3.00 -8.25] weight = 0.003 adjusted weight = 0.000 neff = 515.84
config 254/509=[ 0.00 -9.00] weight = 0.012 adjusted weight = 0.000 neff = 422.15
config 255/509=[ 0.00 9.00] weight = 0.467 adjusted weight = 0.008 neff = 477.10
config 256/509=[ 0.75 9.00] weight = 0.668 adjusted weight = 0.012 neff = 453.07
config 257/509=[ -0.75 -9.00] weight = 0.014 adjusted weight = 0.000 neff = 444.42
config 258/509=[ -0.75 9.00] weight = 0.216 adjusted weight = 0.004 neff = 501.62
config 259/509=[ 0.75 -9.00] weight = 0.007 adjusted weight = 0.000 neff = 400.52
config 260/509=[ -3.75 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 540.09
config 261/509=[ 3.75 8.25] weight = 0.068 adjusted weight = 0.001 neff = 360.43
config 262/509=[ -1.50 9.00] weight = 0.058 adjusted weight = 0.001 neff = 526.72
config 263/509=[ -1.50 -9.00] weight = 0.012 adjusted weight = 0.000 neff = 467.29
config 264/509=[ 1.50 -9.00] weight = 0.003 adjusted weight = 0.000 neff = 379.66
config 265/509=[ -2.25 9.00] weight = 0.011 adjusted weight = 0.000 neff = 551.97
config 266/509=[ 1.50 9.00] weight = 0.672 adjusted weight = 0.012 neff = 429.55
config 267/509=[ -2.25 -9.00] weight = 0.006 adjusted weight = 0.000 neff = 490.85
config 268/509=[ 2.25 9.00] weight = 0.469 adjusted weight = 0.008 neff = 406.67
config 269/509=[ 2.25 -9.00] weight = 0.001 adjusted weight = 0.000 neff = 359.56
config 270/509=[ 4.50 8.25] weight = 0.019 adjusted weight = 0.000 neff = 339.80
config 271/509=[ -3.00 -9.00] weight = 0.002 adjusted weight = 0.000 neff = 514.74
config 272/509=[ -3.00 9.00] weight = 0.001 adjusted weight = 0.000 neff = 577.36
config 273/509=[ 3.00 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 340.04
config 274/509=[ 3.00 9.00] weight = 0.236 adjusted weight = 0.004 neff = 384.46
config 275/509=[ 0.00 9.75] weight = 0.489 adjusted weight = 0.008 neff = 480.05
config 276/509=[ -3.75 -9.00] weight = 0.001 adjusted weight = 0.000 neff = 538.83
config 277/509=[ 3.75 9.00] weight = 0.082 adjusted weight = 0.001 neff = 363.08
config 278/509=[ 0.00 -9.75] weight = 0.009 adjusted weight = 0.000 neff = 422.17
config 279/509=[ -0.75 -9.75] weight = 0.011 adjusted weight = 0.000 neff = 444.25
config 280/509=[ -0.75 9.75] weight = 0.215 adjusted weight = 0.004 neff = 504.63
config 281/509=[ 0.75 9.75] weight = 0.737 adjusted weight = 0.013 neff = 455.95
config 282/509=[ 0.75 -9.75] weight = 0.005 adjusted weight = 0.000 neff = 400.85
config 283/509=[ -1.50 9.75] weight = 0.061 adjusted weight = 0.001 neff = 529.61
config 284/509=[ 1.50 9.75] weight = 0.767 adjusted weight = 0.013 neff = 432.38
config 285/509=[ 1.50 -9.75] weight = 0.003 adjusted weight = 0.000 neff = 380.01
config 286/509=[ -1.50 -9.75] weight = 0.010 adjusted weight = 0.000 neff = 466.93
config 287/509=[ 2.25 -9.75] weight = 0.001 adjusted weight = 0.000 neff = 360.12
config 288/509=[ 2.25 9.75] weight = 0.511 adjusted weight = 0.009 neff = 409.55
config 289/509=[ -2.25 -9.75] weight = 0.006 adjusted weight = 0.000 neff = 490.17
config 290/509=[ -2.25 9.75] weight = 0.011 adjusted weight = 0.000 neff = 554.88
config 291/509=[ 4.50 9.00] weight = 0.025 adjusted weight = 0.000 neff = 342.25
config 292/509=[ 3.00 9.75] weight = 0.269 adjusted weight = 0.005 neff = 387.24
config 293/509=[ 3.00 -9.75] weight = 0.000 adjusted weight = 0.000 neff = 340.82
config 294/509=[ -3.00 -9.75] weight = 0.002 adjusted weight = 0.000 neff = 513.85
config 295/509=[ -3.00 9.75] weight = 0.001 adjusted weight = 0.000 neff = 580.34
config 296/509=[ 3.75 9.75] weight = 0.105 adjusted weight = 0.002 neff = 365.65
config 297/509=[ -3.75 -9.75] weight = 0.001 adjusted weight = 0.000 neff = 537.94
config 298/509=[ 0.00 10.50] weight = 0.497 adjusted weight = 0.009 neff = 483.03
config 299/509=[ 0.00 -10.50] weight = 0.007 adjusted weight = 0.000 neff = 422.80
config 300/509=[ -0.75 -10.50] weight = 0.009 adjusted weight = 0.000 neff = 444.58
config 301/509=[ 0.75 -10.50] weight = 0.005 adjusted weight = 0.000 neff = 401.53
config 302/509=[ -0.75 10.50] weight = 0.184 adjusted weight = 0.003 neff = 507.84
config 303/509=[ 0.75 10.50] weight = 0.791 adjusted weight = 0.014 neff = 458.86
config 304/509=[ -1.50 10.50] weight = 0.056 adjusted weight = 0.001 neff = 532.69
config 305/509=[ 1.50 10.50] weight = 0.856 adjusted weight = 0.015 neff = 435.22
config 306/509=[ -1.50 -10.50] weight = 0.008 adjusted weight = 0.000 neff = 467.04
config 307/509=[ 1.50 -10.50] weight = 0.002 adjusted weight = 0.000 neff = 380.99
config 308/509=[ 4.50 9.75] weight = 0.031 adjusted weight = 0.001 neff = 344.85
config 309/509=[ 2.25 10.50] weight = 0.594 adjusted weight = 0.010 neff = 412.31
config 310/509=[ 2.25 -10.50] weight = 0.001 adjusted weight = 0.000 neff = 361.21
config 311/509=[ -2.25 10.50] weight = 0.009 adjusted weight = 0.000 neff = 558.16
config 312/509=[ -2.25 -10.50] weight = 0.004 adjusted weight = 0.000 neff = 490.14
config 313/509=[ -3.00 10.50] weight = 0.001 adjusted weight = 0.000 neff = 583.60
config 314/509=[ -3.00 -10.50] weight = 0.002 adjusted weight = 0.000 neff = 513.64
config 315/509=[ 3.00 10.50] weight = 0.351 adjusted weight = 0.006 neff = 389.80
config 316/509=[ 3.75 10.50] weight = 0.138 adjusted weight = 0.002 neff = 368.17
config 317/509=[ -3.75 -10.50] weight = 0.001 adjusted weight = 0.000 neff = 537.46
config 318/509=[ 0.00 11.25] weight = 0.493 adjusted weight = 0.009 neff = 486.02
config 319/509=[ 0.00 -11.25] weight = 0.006 adjusted weight = 0.000 neff = 423.84
config 320/509=[ 0.75 -11.25] weight = 0.004 adjusted weight = 0.000 neff = 402.87
config 321/509=[ -0.75 11.25] weight = 0.196 adjusted weight = 0.003 neff = 510.70
config 322/509=[ -0.75 -11.25] weight = 0.007 adjusted weight = 0.000 neff = 445.47
config 323/509=[ 0.75 11.25] weight = 0.821 adjusted weight = 0.014 neff = 461.78
config 324/509=[ 1.50 11.25] weight = 0.931 adjusted weight = 0.016 neff = 438.08
config 325/509=[ -1.50 11.25] weight = 0.044 adjusted weight = 0.001 neff = 535.95
config 326/509=[ 1.50 -11.25] weight = 0.002 adjusted weight = 0.000 neff = 382.59
config 327/509=[ -1.50 -11.25] weight = 0.006 adjusted weight = 0.000 neff = 467.71
config 328/509=[ 4.50 10.50] weight = 0.043 adjusted weight = 0.001 neff = 347.22
config 329/509=[ 2.25 -11.25] weight = 0.001 adjusted weight = 0.000 neff = 363.17
config 330/509=[ -2.25 11.25] weight = 0.007 adjusted weight = 0.000 neff = 561.29
config 331/509=[ 2.25 11.25] weight = 0.733 adjusted weight = 0.013 neff = 414.96
config 332/509=[ -2.25 -11.25] weight = 0.003 adjusted weight = 0.000 neff = 490.58
config 333/509=[ -3.00 -11.25] weight = 0.001 adjusted weight = 0.000 neff = 513.84
config 334/509=[ -3.00 11.25] weight = 0.001 adjusted weight = 0.000 neff = 586.82
config 335/509=[ 3.00 11.25] weight = 0.383 adjusted weight = 0.007 neff = 392.62
config 336/509=[ 3.75 11.25] weight = 0.168 adjusted weight = 0.003 neff = 370.77
config 337/509=[ -3.75 -11.25] weight = 0.000 adjusted weight = 0.000 neff = 537.62
config 338/509=[ 0.00 12.00] weight = 0.469 adjusted weight = 0.008 neff = 489.03
config 339/509=[ 0.00 -12.00] weight = 0.005 adjusted weight = 0.000 neff = 425.68
config 340/509=[ -0.75 12.00] weight = 0.170 adjusted weight = 0.003 neff = 513.81
config 341/509=[ -0.75 -12.00] weight = 0.005 adjusted weight = 0.000 neff = 447.05
config 342/509=[ 0.75 12.00] weight = 0.743 adjusted weight = 0.013 neff = 464.88
config 343/509=[ 0.75 -12.00] weight = 0.003 adjusted weight = 0.000 neff = 405.07
config 344/509=[ -1.50 12.00] weight = 0.038 adjusted weight = 0.001 neff = 539.04
config 345/509=[ -1.50 -12.00] weight = 0.004 adjusted weight = 0.000 neff = 469.15
config 346/509=[ 1.50 -12.00] weight = 0.002 adjusted weight = 0.000 neff = 384.97
config 347/509=[ 1.50 12.00] weight = 0.981 adjusted weight = 0.017 neff = 440.95
config 348/509=[ 4.50 11.25] weight = 0.050 adjusted weight = 0.001 neff = 349.86
config 349/509=[ 2.25 -12.00] weight = 0.001 adjusted weight = 0.000 neff = 365.68
config 350/509=[ -2.25 12.00] weight = 0.006 adjusted weight = 0.000 neff = 564.42
config 351/509=[ -2.25 -12.00] weight = 0.003 adjusted weight = 0.000 neff = 491.55
config 352/509=[ 2.25 12.00] weight = 0.808 adjusted weight = 0.014 neff = 417.75
config 353/509=[ 3.00 12.00] weight = 0.473 adjusted weight = 0.008 neff = 395.21
config 354/509=[ -3.00 -12.00] weight = 0.001 adjusted weight = 0.000 neff = 514.56
config 355/509=[ -3.00 12.00] weight = 0.001 adjusted weight = 0.000 neff = 589.75
config 356/509=[ -3.75 -12.00] weight = 0.000 adjusted weight = 0.000 neff = 538.05
config 357/509=[ 3.75 12.00] weight = 0.190 adjusted weight = 0.003 neff = 373.46
config 358/509=[ 0.00 12.75] weight = 0.438 adjusted weight = 0.008 neff = 492.02
config 359/509=[ 0.00 -12.75] weight = 0.003 adjusted weight = 0.000 neff = 428.45
config 360/509=[ 0.75 12.75] weight = 0.801 adjusted weight = 0.014 neff = 467.68
config 361/509=[ -0.75 -12.75] weight = 0.004 adjusted weight = 0.000 neff = 449.41
config 362/509=[ 0.75 -12.75] weight = 0.002 adjusted weight = 0.000 neff = 407.93
config 363/509=[ -0.75 12.75] weight = 0.154 adjusted weight = 0.003 neff = 516.83
config 364/509=[ 4.50 12.00] weight = 0.066 adjusted weight = 0.001 neff = 352.26
config 365/509=[ -1.50 12.75] weight = 0.036 adjusted weight = 0.001 neff = 541.96
config 366/509=[ 1.50 -12.75] weight = 0.001 adjusted weight = 0.000 neff = 388.28
config 367/509=[ 1.50 12.75] weight = 1.000 adjusted weight = 0.017 neff = 443.82
config 368/509=[ -1.50 -12.75] weight = 0.003 adjusted weight = 0.000 neff = 471.13
config 369/509=[ -2.25 12.75] weight = 0.005 adjusted weight = 0.000 neff = 567.53
config 370/509=[ -2.25 -12.75] weight = 0.002 adjusted weight = 0.000 neff = 493.32
config 371/509=[ 2.25 12.75] weight = 0.786 adjusted weight = 0.014 neff = 420.69
config 372/509=[ 2.25 -12.75] weight = 0.001 adjusted weight = 0.000 neff = 369.20
config 373/509=[ 3.00 12.75] weight = 0.493 adjusted weight = 0.009 neff = 398.02
config 374/509=[ -3.00 -12.75] weight = 0.001 adjusted weight = 0.000 neff = 516.19
config 375/509=[ -3.00 12.75] weight = 0.000 adjusted weight = 0.000 neff = 593.01
config 376/509=[ 3.75 12.75] weight = 0.233 adjusted weight = 0.004 neff = 375.99
config 377/509=[ 0.00 13.50] weight = 0.387 adjusted weight = 0.007 neff = 495.04
config 378/509=[ 0.00 -13.50] weight = 0.003 adjusted weight = 0.000 neff = 431.91
config 379/509=[ -0.75 -13.50] weight = 0.003 adjusted weight = 0.000 neff = 452.74
config 380/509=[ 4.50 12.75] weight = 0.074 adjusted weight = 0.001 neff = 354.88
config 381/509=[ 0.75 -13.50] weight = 0.002 adjusted weight = 0.000 neff = 411.84
config 382/509=[ 0.75 13.50] weight = 0.747 adjusted weight = 0.013 neff = 470.64
config 383/509=[ -0.75 13.50] weight = 0.131 adjusted weight = 0.002 neff = 519.89
config 384/509=[ -1.50 -13.50] weight = 0.002 adjusted weight = 0.000 neff = 474.06
config 385/509=[ 1.50 13.50] weight = 0.972 adjusted weight = 0.017 neff = 446.72
config 386/509=[ 1.50 -13.50] weight = 0.001 adjusted weight = 0.000 neff = 392.44
config 387/509=[ -1.50 13.50] weight = 0.025 adjusted weight = 0.000 neff = 545.24
config 388/509=[ -2.25 -13.50] weight = 0.001 adjusted weight = 0.000 neff = 496.04
config 389/509=[ -2.25 13.50] weight = 0.004 adjusted weight = 0.000 neff = 570.48
config 390/509=[ 2.25 13.50] weight = 0.871 adjusted weight = 0.015 neff = 423.38
config 391/509=[ 2.25 -13.50] weight = 0.000 adjusted weight = 0.000 neff = 373.88
config 392/509=[ -3.00 13.50] weight = 0.000 adjusted weight = 0.000 neff = 596.04
config 393/509=[ -3.00 -13.50] weight = 0.001 adjusted weight = 0.000 neff = 518.32
config 394/509=[ 3.00 13.50] weight = 0.512 adjusted weight = 0.009 neff = 400.78
config 395/509=[ 3.75 13.50] weight = 0.256 adjusted weight = 0.004 neff = 378.64
config 396/509=[ 4.50 13.50] weight = 0.089 adjusted weight = 0.002 neff = 357.33
config 397/509=[ 0.00 -14.25] weight = 0.002 adjusted weight = 0.000 neff = 436.56
config 398/509=[ 0.00 14.25] weight = 0.325 adjusted weight = 0.006 neff = 498.07
config 399/509=[ -0.75 -14.25] weight = 0.002 adjusted weight = 0.000 neff = 456.96
config 400/509=[ -0.75 14.25] weight = 0.097 adjusted weight = 0.002 neff = 523.06
config 401/509=[ 0.75 14.25] weight = 0.660 adjusted weight = 0.011 neff = 473.61
config 402/509=[ 0.75 -14.25] weight = 0.001 adjusted weight = 0.000 neff = 416.87
config 403/509=[ -1.50 -14.25] weight = 0.001 adjusted weight = 0.000 neff = 478.03
config 404/509=[ -1.50 14.25] weight = 0.019 adjusted weight = 0.000 neff = 548.35
config 405/509=[ 1.50 14.25] weight = 0.819 adjusted weight = 0.014 neff = 449.77
config 406/509=[ 1.50 -14.25] weight = 0.001 adjusted weight = 0.000 neff = 397.88
config 407/509=[ -2.25 -14.25] weight = 0.001 adjusted weight = 0.000 neff = 499.58
config 408/509=[ 2.25 14.25] weight = 0.835 adjusted weight = 0.014 neff = 426.23
config 409/509=[ -2.25 14.25] weight = 0.003 adjusted weight = 0.000 neff = 573.61
config 410/509=[ 2.25 -14.25] weight = 0.000 adjusted weight = 0.000 neff = 379.53
config 411/509=[ 3.00 14.25] weight = 0.548 adjusted weight = 0.009 neff = 403.44
config 412/509=[ -3.00 -14.25] weight = 0.000 adjusted weight = 0.000 neff = 521.52
config 413/509=[ 3.75 14.25] weight = 0.244 adjusted weight = 0.004 neff = 381.45
config 414/509=[ 4.50 14.25] weight = 0.096 adjusted weight = 0.002 neff = 359.91
config 415/509=[ 0.00 15.00] weight = 0.258 adjusted weight = 0.004 neff = 501.11
config 416/509=[ 0.00 -15.00] weight = 0.001 adjusted weight = 0.000 neff = 442.45
config 417/509=[ 0.75 15.00] weight = 0.551 adjusted weight = 0.010 neff = 476.58
config 418/509=[ -0.75 15.00] weight = 0.073 adjusted weight = 0.001 neff = 526.14
config 419/509=[ 0.75 -15.00] weight = 0.001 adjusted weight = 0.000 neff = 423.17
config 420/509=[ -0.75 -15.00] weight = 0.001 adjusted weight = 0.000 neff = 462.51
config 421/509=[ 1.50 -15.00] weight = 0.001 adjusted weight = 0.000 neff = 404.52
config 422/509=[ 1.50 15.00] weight = 0.792 adjusted weight = 0.014 neff = 452.53
config 423/509=[ -1.50 -15.00] weight = 0.001 adjusted weight = 0.000 neff = 482.97
config 424/509=[ -1.50 15.00] weight = 0.015 adjusted weight = 0.000 neff = 551.30
config 425/509=[ 2.25 -15.00] weight = 0.000 adjusted weight = 0.000 neff = 386.61
config 426/509=[ -2.25 15.00] weight = 0.002 adjusted weight = 0.000 neff = 576.75
config 427/509=[ 2.25 15.00] weight = 0.765 adjusted weight = 0.013 neff = 429.06
config 428/509=[ -2.25 -15.00] weight = 0.000 adjusted weight = 0.000 neff = 504.12
config 429/509=[ 3.00 15.00] weight = 0.527 adjusted weight = 0.009 neff = 406.18
config 430/509=[ 3.75 15.00] weight = 0.249 adjusted weight = 0.004 neff = 384.06
config 431/509=[ 4.50 15.00] weight = 0.098 adjusted weight = 0.002 neff = 362.48
config 432/509=[ 0.00 -15.75] weight = 0.001 adjusted weight = 0.000 neff = 449.74
config 433/509=[ 0.00 15.75] weight = 0.191 adjusted weight = 0.003 neff = 504.15
config 434/509=[ -0.75 15.75] weight = 0.053 adjusted weight = 0.001 neff = 529.17
config 435/509=[ 0.75 15.75] weight = 0.423 adjusted weight = 0.007 neff = 479.58
config 436/509=[ 0.75 -15.75] weight = 0.000 adjusted weight = 0.000 neff = 430.96
config 437/509=[ -0.75 -15.75] weight = 0.000 adjusted weight = 0.000 neff = 469.27
config 438/509=[ -1.50 15.75] weight = 0.009 adjusted weight = 0.000 neff = 554.58
config 439/509=[ 1.50 -15.75] weight = 0.000 adjusted weight = 0.000 neff = 412.71
config 440/509=[ 1.50 15.75] weight = 0.634 adjusted weight = 0.011 neff = 455.48
config 441/509=[ -1.50 -15.75] weight = 0.000 adjusted weight = 0.000 neff = 489.46
config 442/509=[ 2.25 15.75] weight = 0.647 adjusted weight = 0.011 neff = 431.92
config 443/509=[ -2.25 15.75] weight = 0.001 adjusted weight = 0.000 neff = 579.89
config 444/509=[ 3.00 15.75] weight = 0.464 adjusted weight = 0.008 neff = 408.96
config 445/509=[ 3.75 15.75] weight = 0.234 adjusted weight = 0.004 neff = 386.71
config 446/509=[ 4.50 15.75] weight = 0.093 adjusted weight = 0.002 neff = 365.08
config 447/509=[ 0.00 16.50] weight = 0.130 adjusted weight = 0.002 neff = 507.18
config 448/509=[ 0.75 16.50] weight = 0.300 adjusted weight = 0.005 neff = 482.59
config 449/509=[ -0.75 16.50] weight = 0.034 adjusted weight = 0.001 neff = 532.26
config 450/509=[ 1.50 16.50] weight = 0.478 adjusted weight = 0.008 neff = 458.39
config 451/509=[ -1.50 16.50] weight = 0.006 adjusted weight = 0.000 neff = 557.49
config 452/509=[ -2.25 16.50] weight = 0.001 adjusted weight = 0.000 neff = 583.00
config 453/509=[ 2.25 16.50] weight = 0.511 adjusted weight = 0.009 neff = 434.76
config 454/509=[ 3.00 16.50] weight = 0.383 adjusted weight = 0.007 neff = 411.72
config 455/509=[ 3.75 16.50] weight = 0.193 adjusted weight = 0.003 neff = 389.44
config 456/509=[ 4.50 16.50] weight = 0.081 adjusted weight = 0.001 neff = 367.68
config 457/509=[ 0.00 17.25] weight = 0.080 adjusted weight = 0.001 neff = 510.23
config 458/509=[ -0.75 17.25] weight = 0.021 adjusted weight = 0.000 neff = 535.32
config 459/509=[ 0.75 17.25] weight = 0.196 adjusted weight = 0.003 neff = 485.56
config 460/509=[ 1.50 17.25] weight = 0.322 adjusted weight = 0.006 neff = 461.33
config 461/509=[ -1.50 17.25] weight = 0.004 adjusted weight = 0.000 neff = 560.61
config 462/509=[ 2.25 17.25] weight = 0.359 adjusted weight = 0.006 neff = 437.63
config 463/509=[ -2.25 17.25] weight = 0.000 adjusted weight = 0.000 neff = 586.14
config 464/509=[ 3.00 17.25] weight = 0.281 adjusted weight = 0.005 neff = 414.51
config 465/509=[ 3.75 17.25] weight = 0.147 adjusted weight = 0.003 neff = 392.15
config 466/509=[ 4.50 17.25] weight = 0.064 adjusted weight = 0.001 neff = 370.30
config 467/509=[ 0.00 18.00] weight = 0.043 adjusted weight = 0.001 neff = 513.29
config 468/509=[ 0.75 18.00] weight = 0.112 adjusted weight = 0.002 neff = 488.56
config 469/509=[ -0.75 18.00] weight = 0.010 adjusted weight = 0.000 neff = 538.45
config 470/509=[ -1.50 18.00] weight = 0.001 adjusted weight = 0.000 neff = 563.97
config 471/509=[ 1.50 18.00] weight = 0.193 adjusted weight = 0.003 neff = 464.27
config 472/509=[ 2.25 18.00] weight = 0.225 adjusted weight = 0.004 neff = 440.50
config 473/509=[ 3.00 18.00] weight = 0.170 adjusted weight = 0.003 neff = 417.42
config 474/509=[ 3.75 18.00] weight = 0.099 adjusted weight = 0.002 neff = 394.87
config 475/509=[ 4.50 18.00] weight = 0.044 adjusted weight = 0.001 neff = 372.94
config 476/509=[ 0.00 18.75] weight = 0.020 adjusted weight = 0.000 neff = 516.36
config 477/509=[ -0.75 18.75] weight = 0.005 adjusted weight = 0.000 neff = 541.52
config 478/509=[ 0.75 18.75] weight = 0.055 adjusted weight = 0.001 neff = 491.59
config 479/509=[ -1.50 18.75] weight = 0.001 adjusted weight = 0.000 neff = 567.10
config 480/509=[ 1.50 18.75] weight = 0.099 adjusted weight = 0.002 neff = 467.23
config 481/509=[ 2.25 18.75] weight = 0.120 adjusted weight = 0.002 neff = 443.40
config 482/509=[ 3.00 18.75] weight = 0.101 adjusted weight = 0.002 neff = 420.13
config 483/509=[ 3.75 18.75] weight = 0.057 adjusted weight = 0.001 neff = 397.60
config 484/509=[ 4.50 18.75] weight = 0.026 adjusted weight = 0.000 neff = 375.58
config 485/509=[ 0.00 19.50] weight = 0.008 adjusted weight = 0.000 neff = 519.43
config 486/509=[ -0.75 19.50] weight = 0.002 adjusted weight = 0.000 neff = 544.63
config 487/509=[ 0.75 19.50] weight = 0.022 adjusted weight = 0.000 neff = 494.61
config 488/509=[ 1.50 19.50] weight = 0.042 adjusted weight = 0.001 neff = 470.20
config 489/509=[ 2.25 19.50] weight = 0.054 adjusted weight = 0.001 neff = 446.29
config 490/509=[ 3.00 19.50] weight = 0.046 adjusted weight = 0.001 neff = 422.98
config 491/509=[ 3.75 19.50] weight = 0.029 adjusted weight = 0.001 neff = 400.26
config 492/509=[ 4.50 19.50] weight = 0.013 adjusted weight = 0.000 neff = 378.24
config 493/509=[ 0.00 20.25] weight = 0.002 adjusted weight = 0.000 neff = 522.50
config 494/509=[ -0.75 20.25] weight = 0.001 adjusted weight = 0.000 neff = 547.74
config 495/509=[ 0.75 20.25] weight = 0.007 adjusted weight = 0.000 neff = 497.64
config 496/509=[ 1.50 20.25] weight = 0.015 adjusted weight = 0.000 neff = 473.18
config 497/509=[ 2.25 20.25] weight = 0.019 adjusted weight = 0.000 neff = 449.20
config 498/509=[ 3.00 20.25] weight = 0.017 adjusted weight = 0.000 neff = 425.81
config 499/509=[ 3.75 20.25] weight = 0.011 adjusted weight = 0.000 neff = 403.01
config 500/509=[ 4.50 20.25] weight = 0.005 adjusted weight = 0.000 neff = 380.90
config 501/509=[ 0.00 21.00] weight = 0.001 adjusted weight = 0.000 neff = 525.59
config 502/509=[ 0.75 21.00] weight = 0.002 adjusted weight = 0.000 neff = 500.67
config 503/509=[ 1.50 21.00] weight = 0.004 adjusted weight = 0.000 neff = 476.15
config 504/509=[ 3.00 21.00] weight = 0.005 adjusted weight = 0.000 neff = 428.64
config 505/509=[ 2.25 21.00] weight = 0.005 adjusted weight = 0.000 neff = 452.11
config 506/509=[ 3.75 21.00] weight = 0.003 adjusted weight = 0.000 neff = 405.77
config 507/509=[ 4.50 21.00] weight = 0.002 adjusted weight = 0.000 neff = 383.58
config 508/509=[ 0.75 21.75] weight = 0.000 adjusted weight = 0.000 neff = 503.71
Done.
Expected effective number of parameters: 441.363(37.954), eqv.#replicates: 6.897
DIC:
Mean of Deviance................. 2174.36
Deviance at Mean................. 1809.33
Effective number of parameters... 365.03
DIC.............................. 2539.39
Marginal likelihood: Integration -1022.849218 Gaussian-approx -1024.781419
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d31b5046a1/Model.ini]
Preparations : 0.130 seconds
Approx inference: 2354.319 seconds [0.2|0.0|0.4|74.4|25.0]%
Output : 3.077 seconds
---------------------------------
Total : 2357.526 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d317dbd663] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3119c76f2]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3374512e6]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3119c76f2]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 1, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 1, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d35c95e5a0] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d31cac6c2d]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3f31fb8f]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d375169adc]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d361d809d1] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d32e6caa86] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3602f5b39] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3450e2c84] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3258cb187] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d337db2953] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d3157624cb] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d37f69966e] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/data.files/filee1d36d13511b] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fdcca40be30
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1110.273229 fn= 1 theta= 3.990000 4.000000 range=[-1.682 2.617]
max.logdens= -1103.904954 fn= 5 theta= 3.000001 3.998662 range=[-1.686 2.637]
max.logdens= -1103.901066 fn= 6 theta= 3.000001 3.988662 range=[-1.687 2.638]
max.logdens= -1103.794664 fn= 7 theta= 2.990001 3.998662 range=[-1.686 2.637]
max.logdens= -1097.858068 fn= 11 theta= 2.550001 3.998060 range=[-1.691 2.651]
max.logdens= -1097.688198 fn= 12 theta= 2.540001 3.998060 range=[-1.691 2.651]
max.logdens= -1089.060905 fn= 16 theta= 2.122502 3.997488 range=[-1.697 2.661]
max.logdens= -1089.044622 fn= 17 theta= 2.122502 3.987488 range=[-1.697 2.662]
max.logdens= -1088.792949 fn= 18 theta= 2.112502 3.997488 range=[-1.697 2.661]
max.logdens= -1076.967485 fn= 21 theta= 1.716377 3.996944 range=[-1.707 2.656]
max.logdens= -1076.618678 fn= 23 theta= 1.706377 3.996944 range=[-1.707 2.655]
max.logdens= -1061.749413 fn= 26 theta= 1.330559 3.996428 range=[-1.723 2.812]
max.logdens= -1061.308901 fn= 29 theta= 1.320559 3.996428 range=[-1.723 2.829]
max.logdens= -1044.615449 fn= 31 theta= 0.964031 3.995937 range=[-1.745 3.392]
max.logdens= -1044.124655 fn= 34 theta= 0.954031 3.995937 range=[-1.746 3.407]
max.logdens= -1027.745219 fn= 36 theta= 0.615830 3.995471 range=[-1.775 3.839]
max.logdens= -1027.273049 fn= 38 theta= 0.605830 3.995471 range=[-1.776 3.850]
max.logdens= -1013.546669 fn= 41 theta= 0.285039 3.995029 range=[-1.814 4.172]
max.logdens= -1013.168232 fn= 43 theta= 0.275039 3.995029 range=[-1.815 4.181]
max.logdens= -1004.026862 fn= 46 theta= -0.029213 3.994608 range=[-1.873 4.428]
max.logdens= -1003.807331 fn= 48 theta= -0.039213 3.994608 range=[-1.876 4.435]
max.logdens= -1000.470385 fn= 51 theta= -0.327751 3.994209 range=[-1.956 4.634]
max.logdens= -1000.456578 fn= 53 theta= -0.337751 3.994209 range=[-1.959 4.640]
max.logdens= -1000.452621 fn= 55 theta= -0.327751 4.004209 range=[-1.956 4.634]
max.logdens= -1000.442890 fn= 61 theta= -0.343037 4.004188 range=[-1.960 4.644]
Iter=1 |grad|=1.18 |x-x.old|=3.07 |f-f.old|=110
max.logdens= -1000.409562 fn= 63 theta= -0.379115 4.082555 range=[-1.971 4.668]
max.logdens= -1000.406017 fn= 64 theta= -0.379115 4.072555 range=[-1.971 4.667]
max.logdens= -1000.371606 fn= 66 theta= -0.369115 4.082555 range=[-1.968 4.661]
Iter=2 |grad|=2.97 |x-x.old|=0.0675 |f-f.old|=0.0496
max.logdens= -1000.289602 fn= 68 theta= -0.378378 4.166428 range=[-1.971 4.668]
max.logdens= -1000.268950 fn= 71 theta= -0.368378 4.166428 range=[-1.968 4.661]
max.logdens= -1000.188074 fn= 73 theta= -0.377641 4.250301 range=[-1.970 4.668]
max.logdens= -1000.168131 fn= 76 theta= -0.367641 4.250301 range=[-1.967 4.662]
max.logdens= -1000.065407 fn= 78 theta= -0.376732 4.353651 range=[-1.969 4.668]
max.logdens= -1000.046311 fn= 81 theta= -0.366732 4.353651 range=[-1.966 4.662]
max.logdens= -999.924974 fn= 83 theta= -0.375669 4.474633 range=[-1.969 4.668]
max.logdens= -999.906845 fn= 86 theta= -0.365669 4.474633 range=[-1.965 4.662]
max.logdens= -999.773378 fn= 88 theta= -0.374493 4.608422 range=[-1.968 4.668]
max.logdens= -999.756291 fn= 91 theta= -0.364493 4.608422 range=[-1.965 4.662]
max.logdens= -999.617532 fn= 93 theta= -0.373253 4.749432 range=[-1.967 4.668]
max.logdens= -999.601561 fn= 96 theta= -0.363253 4.749432 range=[-1.964 4.662]
max.logdens= -999.465504 fn= 98 theta= -0.372014 4.890442 range=[-1.966 4.668]
max.logdens= -999.450649 fn= 101 theta= -0.362014 4.890442 range=[-1.963 4.662]
max.logdens= -999.317186 fn= 103 theta= -0.370774 5.031453 range=[-1.966 4.668]
max.logdens= -999.303408 fn= 105 theta= -0.360774 5.031453 range=[-1.962 4.662]
max.logdens= -999.172467 fn= 108 theta= -0.369535 5.172463 range=[-1.965 4.668]
max.logdens= -999.159743 fn= 111 theta= -0.359535 5.172463 range=[-1.962 4.661]
max.logdens= -999.031311 fn= 113 theta= -0.368295 5.313473 range=[-1.964 4.667]
max.logdens= -999.019656 fn= 116 theta= -0.358295 5.313473 range=[-1.961 4.661]
max.logdens= -998.893777 fn= 118 theta= -0.367056 5.454484 range=[-1.964 4.667]
max.logdens= -998.883158 fn= 121 theta= -0.357056 5.454484 range=[-1.960 4.661]
max.logdens= -998.726755 fn= 123 theta= -0.365816 5.595494 range=[-1.963 4.667]
max.logdens= -998.597320 fn= 128 theta= -0.364577 5.736504 range=[-1.962 4.666]
max.logdens= -998.472013 fn= 133 theta= -0.363337 5.877515 range=[-1.962 4.666]
max.logdens= -998.351195 fn= 138 theta= -0.362098 6.018525 range=[-1.961 4.665]
max.logdens= -998.235266 fn= 143 theta= -0.360858 6.159536 range=[-1.961 4.665]
max.logdens= -998.124805 fn= 148 theta= -0.359619 6.300546 range=[-1.960 4.664]
max.logdens= -998.020410 fn= 153 theta= -0.358379 6.441556 range=[-1.960 4.663]
max.logdens= -997.922840 fn= 158 theta= -0.357140 6.582567 range=[-1.960 4.663]
max.logdens= -997.832986 fn= 163 theta= -0.355900 6.723577 range=[-1.959 4.662]
max.logdens= -997.751882 fn= 168 theta= -0.354661 6.864587 range=[-1.959 4.661]
max.logdens= -997.680711 fn= 173 theta= -0.353421 7.005598 range=[-1.958 4.661]
max.logdens= -997.620937 fn= 178 theta= -0.352182 7.146608 range=[-1.958 4.660]
max.logdens= -997.574146 fn= 183 theta= -0.350942 7.287618 range=[-1.957 4.659]
max.logdens= -997.542229 fn= 188 theta= -0.349703 7.428629 range=[-1.957 4.659]
Iter=3 |grad|=0.276 |x-x.old|=2.37 |f-f.old|=2.87
Iter=4 |grad|=0.276 |x-x.old|=2.76e-11(pass) |f-f.old|=0.0301 Reached numerical limit!
Number of function evaluations = 205
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
96.616238 4.696709
4.696709 21.021749
Eigenvectors of the Hessian
0.998090 -0.061774
0.061774 0.998090
Eigenvalues of the Hessian
96.906928
20.731059
StDev/Correlation matrix (scaled inverse Hessian)
0.102293 -0.104216
0.219299
Compute corrected stdev for theta[0]: negative 1.082715 positive 1.161253
Compute corrected stdev for theta[1]: negative 3.327981 positive 5.229834
config 0=[ 0.00 0.00] log(rel.dens)=-0.02, [1] accept, compute, 13.19s
config 1=[ 0.00 -0.75] log(rel.dens)=-0.04, [2] accept, compute, 13.35s
config 2=[ -0.75 0.00] log(rel.dens)=-0.25, [3] accept, compute, 13.41s
max.logdens= -997.565845 fn= 224 theta= -0.359878 7.593036 range=[-1.960 4.665]
config 3=[ 0.75 0.00] log(rel.dens)=-0.20, [0] accept, compute, 13.95s
config 4=[ 0.00 0.75] log(rel.dens)= 0.01, [1] accept, compute, 18.58s
config 5=[ -0.75 -0.75] log(rel.dens)=-0.23, [3] accept, compute, 18.50s
config 6=[ -0.75 0.75] log(rel.dens)=-0.51, [2] accept, compute, 18.58s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.30, [0] accept, compute, 18.88s
config 8=[ 0.75 0.75] log(rel.dens)=-0.25, [1] accept, compute, 16.06s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.26, [3] accept, compute, 16.12s
config 10=[ -1.50 0.00] log(rel.dens)=-1.07, [2] accept, compute, 16.09s
config 11=[ 1.50 0.00] log(rel.dens)=-0.91, [0] accept, compute, 15.63s
config 12=[ 0.00 1.50] log(rel.dens)=-0.17, [1] accept, compute, 18.07s
config 13=[ -0.75 1.50] log(rel.dens)=-0.39, [3] accept, compute, 18.22s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.43, [2] accept, compute, 18.45s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.24, [0] accept, compute, 18.79s
config 16=[ 0.75 1.50] log(rel.dens)=-0.22, [1] accept, compute, 14.83s
config 17=[ -1.50 -0.75] log(rel.dens)=-0.93, [3] accept, compute, 14.59s
config 18=[ 1.50 -0.75] log(rel.dens)=-1.06, [2] accept, compute, 14.99s
config 19=[ -1.50 0.75] log(rel.dens)=-1.08, [0] accept, compute, 14.87s
config 20=[ 1.50 0.75] log(rel.dens)=-0.84, [1] accept, compute, 14.74s
config 21=[ -1.50 -1.50] log(rel.dens)=-0.83, [3] accept, compute, 14.95s
config 22=[ 1.50 1.50] log(rel.dens)=-0.64, [2] accept, compute, 15.61s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.18, [0] accept, compute, 16.21s
config 24=[ -1.50 1.50] log(rel.dens)=-1.24, [1] accept, compute, 16.94s
config 25=[ 0.00 -2.25] log(rel.dens)=-0.20, [3] accept, compute, 16.72s
config 26=[ 2.25 0.00] log(rel.dens)=-2.02, [2] accept, compute, 16.16s
config 27=[ -2.25 0.00] log(rel.dens)=-2.19, [0] accept, compute, 15.89s
config 28=[ 2.25 0.75] log(rel.dens)=-1.70, [3] accept, compute, 13.93s
config 29=[ 0.00 2.25] log(rel.dens)=-0.08, [1] accept, compute, 14.06s
config 30=[ -0.75 -2.25] log(rel.dens)=-0.27, [2] accept, compute, 13.92s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.59, [0] accept, compute, 13.79s
config 32=[ 2.25 -0.75] log(rel.dens)=-2.08, [1] accept, compute, 10.61s
config 33=[ -2.25 -0.75] log(rel.dens)=-2.05, [3] accept, compute, 10.69s
config 34=[ -0.75 2.25] log(rel.dens)=-0.60, [2] accept, compute, 10.69s
config 35=[ -2.25 0.75] log(rel.dens)=-2.35, [0] accept, compute, 10.76s
config 36=[ 0.75 2.25] log(rel.dens)=-0.11, [1] accept, compute, 14.14s
config 37=[ -2.25 -1.50] log(rel.dens)=-1.89, [3] accept, compute, 14.23s
config 38=[ 2.25 -1.50] log(rel.dens)=-2.32, [2] accept, compute, 14.88s
config 39=[ -1.50 -2.25] log(rel.dens)=-0.79, [0] accept, compute, 15.07s
config 40=[ 2.25 1.50] log(rel.dens)=-1.56, [1] accept, compute, 20.58s
config 41=[ -1.50 2.25] log(rel.dens)=-1.43, [3] accept, compute, 20.65s
config 42=[ 1.50 -2.25] log(rel.dens)=-1.44, [2] accept, compute, 20.48s
config 43=[ -2.25 1.50] log(rel.dens)=-2.55, [0] accept, compute, 21.04s
config 44=[ 1.50 2.25] log(rel.dens)=-0.70, [1] accept, compute, 13.71s
config 45=[ 0.00 3.00] log(rel.dens)=-0.20, [3] accept, compute, 14.03s
config 46=[ 3.00 0.00] log(rel.dens)=-3.30, [2] accept, compute, 13.83s
config 47=[ 0.00 -3.00] log(rel.dens)=-0.32, [0] accept, compute, 13.51s
config 48=[ -3.00 0.00] log(rel.dens)=-3.88, [1] accept, compute, 16.04s
config 49=[ -0.75 -3.00] log(rel.dens)=-0.32, [3] accept, compute, 16.76s
config 50=[ -3.00 0.75] log(rel.dens)=-4.28, [2] accept, compute, 16.41s
config 51=[ 3.00 0.75] log(rel.dens)=-3.08, [0] accept, compute, 17.38s
config 52=[ -0.75 3.00] log(rel.dens)=-0.69, [1] accept, compute, 15.87s
config 53=[ 0.75 -3.00] log(rel.dens)=-0.74, [3] accept, compute, 15.60s
config 54=[ 0.75 3.00] log(rel.dens)=-0.18, [2] accept, compute, 15.77s
config 55=[ 3.00 -0.75] log(rel.dens)=-3.56, [0] accept, compute, 14.62s
config 56=[ -3.00 -0.75] log(rel.dens)=-3.62, [1] accept, compute, 15.12s
config 57=[ 2.25 2.25] log(rel.dens)=-1.56, [3] accept, compute, 15.02s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.57, [2] accept, compute, 14.62s
config 59=[ -2.25 -2.25] log(rel.dens)=-1.88, [0] accept, compute, 14.93s
config 60=[ -2.25 2.25] log(rel.dens)=-2.84, [1] accept, compute, 11.61s
config 61=[ -1.50 3.00] log(rel.dens)=-1.68, [3] accept, compute, 11.47s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.56, [2] accept, compute, 11.54s
config 63=[ 1.50 -3.00] log(rel.dens)=-1.62, [0] accept, compute, 11.34s
config 64=[ 3.00 1.50] log(rel.dens)=-2.95, [1] accept, compute, 11.33s
config 65=[ 1.50 3.00] log(rel.dens)=-0.58, [3] accept, compute, 11.55s
config 66=[ -3.00 1.50] log(rel.dens)=-4.41, [2] accept, compute, 11.54s
config 67=[ -1.50 -3.00] log(rel.dens)=-0.80, [0] accept, compute, 11.78s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.85, [1] accept, compute, 17.06s
config 69=[ -2.25 -3.00] log(rel.dens)=-1.73, [3] accept, compute, 17.53s
config 70=[ 2.25 -3.00] log(rel.dens)=-2.95, [2] accept, compute, 17.89s
config 71=[ 0.00 -3.75] log(rel.dens)=-0.45, [0] accept, compute, 18.12s
config 72=[ -3.00 2.25] log(rel.dens)=-4.68, [1] accept, compute, 16.59s
config 73=[ 3.00 -2.25] log(rel.dens)=-4.19, [3] accept, compute, 16.54s
config 74=[ 3.00 2.25] log(rel.dens)=-2.73, [2] accept, compute, 16.94s
config 75=[ -3.00 -2.25] log(rel.dens)=-3.30, [0] accept, compute, 16.25s
config 76=[ 2.25 3.00] log(rel.dens)=-1.47, [1] accept, compute, 16.91s
config 77=[ -3.75 0.00] log(rel.dens)=-6.17, reject, 0.63s
config 78=[ 0.00 3.75] log(rel.dens)=-0.38, [3] accept, compute, 17.19s
config 79=[ -2.25 3.00] log(rel.dens)=-3.22, [2] accept, compute, 16.34s
config 80=[ 3.75 0.00] log(rel.dens)=-5.21, [0] accept, compute, 17.06s
config 81=[ -0.75 3.75] log(rel.dens)=-0.92, [1] accept, compute, 16.63s
config 82=[ 0.75 -3.75] log(rel.dens)=-0.94, [3] accept, compute, 16.58s
config 83=[ 3.75 0.75] log(rel.dens)=-4.93, [2] accept, compute, 16.62s
config 84=[ 3.75 -0.75] log(rel.dens)=-5.38, [0] accept, compute, 15.34s
config 85=[ 0.75 3.75] log(rel.dens)=-0.27, [1] accept, compute, 18.12s
config 86=[ -0.75 -3.75] log(rel.dens)=-0.40, [3] accept, compute, 18.14s
config 87=[ -1.50 3.75] log(rel.dens)=-2.07, [2] accept, compute, 18.09s
config 88=[ 3.75 1.50] log(rel.dens)=-4.59, [0] accept, compute, 18.39s
config 89=[ -1.50 -3.75] log(rel.dens)=-0.80, [1] accept, compute, 12.33s
config 90=[ 1.50 -3.75] log(rel.dens)=-1.84, [3] accept, compute, 12.59s
config 91=[ 1.50 3.75] log(rel.dens)=-0.63, [2] accept, compute, 12.40s
config 92=[ 3.75 -1.50] log(rel.dens)=-5.73, [0] accept, compute, 12.10s
config 93=[ -3.00 -3.00] log(rel.dens)=-3.15, [1] accept, compute, 11.58s
config 94=[ 3.00 -3.00] log(rel.dens)=-4.46, [3] accept, compute, 12.02s
config 95=[ 3.00 3.00] log(rel.dens)=-2.63, [2] accept, compute, 12.29s
config 96=[ -3.00 3.00] log(rel.dens)=-5.04, [0] accept, compute, 12.22s
config 97=[ 3.75 -2.25] log(rel.dens)=-6.06, reject, 0.50s
config 98=[ 2.25 -3.75] log(rel.dens)=-3.21, [1] accept, compute, 13.54s
config 99=[ 2.25 3.75] log(rel.dens)=-1.39, [3] accept, compute, 13.84s
config 100=[ -2.25 -3.75] log(rel.dens)=-1.72, [2] accept, compute, 13.71s
config 101=[ 3.75 2.25] log(rel.dens)=-4.43, [0] accept, compute, 13.79s
config 102=[ 4.50 0.00] log(rel.dens)=-7.33, reject, 0.33s
config 103=[ -2.25 3.75] log(rel.dens)=-3.59, [1] accept, compute, 13.62s
config 104=[ 0.00 4.50] log(rel.dens)=-0.59, [3] accept, compute, 13.60s
config 105=[ 0.00 -4.50] log(rel.dens)=-0.60, [2] accept, compute, 13.56s
config 106=[ 0.75 -4.50] log(rel.dens)=-1.15, [0] accept, compute, 13.30s
config 107=[ -0.75 4.50] log(rel.dens)=-1.20, [1] accept, compute, 12.47s
config 108=[ 0.75 4.50] log(rel.dens)=-0.56, [3] accept, compute, 12.70s
config 109=[ -0.75 -4.50] log(rel.dens)=-0.61, [2] accept, compute, 12.26s
config 110=[ -1.50 4.50] log(rel.dens)=-2.31, [0] accept, compute, 12.77s
config 111=[ -1.50 -4.50] log(rel.dens)=-0.88, [1] accept, compute, 16.37s
config 112=[ 1.50 4.50] log(rel.dens)=-0.84, [3] accept, compute, 16.59s
config 113=[ 1.50 -4.50] log(rel.dens)=-2.10, [2] accept, compute, 16.62s
config 114=[ -3.00 -3.75] log(rel.dens)=-3.07, [0] accept, compute, 15.87s
config 115=[ 3.00 3.75] log(rel.dens)=-2.58, [1] accept, compute, 11.80s
config 116=[ -3.00 3.75] log(rel.dens)=-5.52, [3] accept, compute, 11.57s
config 117=[ 3.75 3.00] log(rel.dens)=-4.23, [2] accept, compute, 11.76s
config 118=[ 3.00 -3.75] log(rel.dens)=-4.90, [0] accept, compute, 11.71s
config 119=[ 2.25 -4.50] log(rel.dens)=-3.47, [1] accept, compute, 10.96s
config 120=[ -2.25 -4.50] log(rel.dens)=-1.64, [3] accept, compute, 11.08s
config 121=[ -2.25 4.50] log(rel.dens)=-4.08, [2] accept, compute, 11.15s
config 122=[ 2.25 4.50] log(rel.dens)=-1.45, [0] accept, compute, 11.21s
config 123=[ 0.00 5.25] log(rel.dens)=-0.90, [1] accept, compute, 12.41s
config 124=[ 0.00 -5.25] log(rel.dens)=-0.77, [3] accept, compute, 12.33s
config 125=[ -0.75 -5.25] log(rel.dens)=-0.61, [2] accept, compute, 12.44s
config 126=[ 3.75 3.75] log(rel.dens)=-4.12, [0] accept, compute, 12.25s
config 127=[ -0.75 5.25] log(rel.dens)=-1.70, [1] accept, compute, 12.13s
config 128=[ 0.75 -5.25] log(rel.dens)=-1.47, [3] accept, compute, 11.76s
config 129=[ -3.00 4.50] log(rel.dens)=-6.04, reject, 0.36s
config 130=[ 0.75 5.25] log(rel.dens)=-0.67, [2] accept, compute, 11.72s
config 131=[ -3.00 -4.50] log(rel.dens)=-3.07, [0] accept, compute, 11.59s
config 132=[ 3.00 -4.50] log(rel.dens)=-5.21, [1] accept, compute, 11.06s
config 133=[ 1.50 5.25] log(rel.dens)=-1.02, [2] accept, compute, 11.07s
config 134=[ 3.00 4.50] log(rel.dens)=-2.70, [3] accept, compute, 11.26s
config 135=[ -1.50 5.25] log(rel.dens)=-2.72, [0] accept, compute, 11.06s
config 136=[ -1.50 -5.25] log(rel.dens)=-0.92, [1] accept, compute, 11.60s
config 137=[ 2.25 5.25] log(rel.dens)=-1.70, [3] accept, compute, 11.50s
config 138=[ 1.50 -5.25] log(rel.dens)=-2.38, [2] accept, compute, 11.67s
config 139=[ -2.25 5.25] log(rel.dens)=-4.51, [0] accept, compute, 11.64s
config 140=[ -2.25 -5.25] log(rel.dens)=-1.77, [1] accept, compute, 10.78s
config 141=[ 3.75 4.50] log(rel.dens)=-4.21, [2] accept, compute, 10.96s
config 142=[ 2.25 -5.25] log(rel.dens)=-3.78, [3] accept, compute, 11.12s
config 143=[ 0.00 -6.00] log(rel.dens)=-0.98, [0] accept, compute, 11.07s
config 144=[ 0.00 6.00] log(rel.dens)=-1.39, [1] accept, compute, 11.08s
config 145=[ 3.00 5.25] log(rel.dens)=-2.76, [2] accept, compute, 11.26s
config 146=[ 0.75 -6.00] log(rel.dens)=-1.61, [3] accept, compute, 11.45s
config 147=[ -0.75 -6.00] log(rel.dens)=-0.84, [0] accept, compute, 11.31s
config 148=[ 3.00 -5.25] log(rel.dens)=-5.56, [1] accept, compute, 12.42s
config 149=[ -3.00 -5.25] log(rel.dens)=-2.92, [2] accept, compute, 12.65s
config 150=[ 0.75 6.00] log(rel.dens)=-0.99, [3] accept, compute, 12.52s
config 151=[ -0.75 6.00] log(rel.dens)=-1.99, [0] accept, compute, 12.82s
config 152=[ 1.50 6.00] log(rel.dens)=-1.17, [1] accept, compute, 15.67s
config 153=[ -1.50 -6.00] log(rel.dens)=-0.95, [2] accept, compute, 17.61s
config 154=[ -1.50 6.00] log(rel.dens)=-3.21, [3] accept, compute, 17.47s
config 155=[ 1.50 -6.00] log(rel.dens)=-2.69, [0] accept, compute, 17.22s
config 156=[ 2.25 -6.00] log(rel.dens)=-4.12, [1] accept, compute, 20.34s
config 157=[ 2.25 6.00] log(rel.dens)=-1.90, [0] accept, compute, 28.12s
config 158=[ -2.25 -6.00] log(rel.dens)=-1.77, [2] accept, compute, 28.35s
config 159=[ -2.25 6.00] log(rel.dens)=-5.08, [3] accept, compute, 28.92s
config 160=[ 3.75 5.25] log(rel.dens)=-4.11, [1] accept, compute, 29.60s
config 161=[ -3.00 -6.00] log(rel.dens)=-2.82, [0] accept, compute, 20.66s
config 162=[ 3.00 6.00] log(rel.dens)=-2.82, [2] accept, compute, 20.90s
config 163=[ 3.00 -6.00] log(rel.dens)=-5.92, [3] accept, compute, 20.83s
config 164=[ 0.00 -6.75] log(rel.dens)=-1.16, [1] accept, compute, 17.22s
config 165=[ 0.00 6.75] log(rel.dens)=-1.72, [0] accept, compute, 16.26s
config 166=[ -0.75 6.75] log(rel.dens)=-2.55, [2] accept, compute, 16.28s
config 167=[ 0.75 -6.75] log(rel.dens)=-1.87, [3] accept, compute, 16.06s
config 168=[ -0.75 -6.75] log(rel.dens)=-0.98, [1] accept, compute, 19.74s
config 169=[ 0.75 6.75] log(rel.dens)=-1.52, [0] accept, compute, 19.84s
config 170=[ -1.50 6.75] log(rel.dens)=-3.95, [2] accept, compute, 20.58s
config 171=[ 1.50 6.75] log(rel.dens)=-1.52, [3] accept, compute, 20.66s
config 172=[ 1.50 -6.75] log(rel.dens)=-2.98, [1] accept, compute, 15.33s
config 173=[ -1.50 -6.75] log(rel.dens)=-1.08, [0] accept, compute, 14.37s
config 174=[ 3.75 6.00] log(rel.dens)=-4.28, [2] accept, compute, 14.54s
config 175=[ -2.25 -6.75] log(rel.dens)=-1.65, [3] accept, compute, 14.74s
config 176=[ -2.25 6.75] log(rel.dens)=-5.71, [1] accept, compute, 13.49s
config 177=[ 2.25 6.75] log(rel.dens)=-2.08, [0] accept, compute, 13.65s
config 178=[ 3.00 -6.75] log(rel.dens)=-6.33, reject, 0.37s
config 179=[ 2.25 -6.75] log(rel.dens)=-4.48, [2] accept, compute, 12.84s
config 180=[ 3.00 6.75] log(rel.dens)=-3.06, [3] accept, compute, 12.77s
config 181=[ -3.00 -6.75] log(rel.dens)=-2.75, [1] accept, compute, 18.41s
config 182=[ 0.00 -7.50] log(rel.dens)=-1.37, [2] accept, compute, 22.42s
config 183=[ 0.00 7.50] log(rel.dens)=-2.37, [0] accept, compute, 22.95s
config 184=[ -0.75 -7.50] log(rel.dens)=-1.03, [3] accept, compute, 24.63s
config 185=[ -0.75 7.50] log(rel.dens)=-3.19, [1] accept, compute, 25.08s
config 186=[ 0.75 7.50] log(rel.dens)=-2.04, [0] accept, compute, 21.96s
config 187=[ 0.75 -7.50] log(rel.dens)=-2.23, [2] accept, compute, 22.53s
config 188=[ 1.50 -7.50] log(rel.dens)=-3.30, [3] accept, compute, 21.19s
config 189=[ 1.50 7.50] log(rel.dens)=-1.98, [1] accept, compute, 16.24s
config 190=[ -2.25 7.50] log(rel.dens)=-6.36, reject, 0.33s
config 191=[ -1.50 -7.50] log(rel.dens)=-1.14, [0] accept, compute, 14.30s
config 192=[ -1.50 7.50] log(rel.dens)=-4.54, [2] accept, compute, 14.64s
config 193=[ 3.75 6.75] log(rel.dens)=-4.43, [3] accept, compute, 14.14s
config 194=[ 2.25 -7.50] log(rel.dens)=-4.99, [1] accept, compute, 13.79s
config 195=[ 2.25 7.50] log(rel.dens)=-2.49, [0] accept, compute, 13.86s
config 196=[ -2.25 -7.50] log(rel.dens)=-1.68, [2] accept, compute, 13.59s
config 197=[ -3.00 -7.50] log(rel.dens)=-2.79, [3] accept, compute, 13.72s
config 198=[ 3.00 7.50] log(rel.dens)=-3.41, [1] accept, compute, 12.63s
config 199=[ 0.00 -8.25] log(rel.dens)=-1.60, [0] accept, compute, 12.33s
config 200=[ 0.00 8.25] log(rel.dens)=-3.01, [2] accept, compute, 12.43s
config 201=[ 0.75 -8.25] log(rel.dens)=-2.43, [3] accept, compute, 12.48s
config 202=[ 0.75 8.25] log(rel.dens)=-2.56, [1] accept, compute, 12.90s
config 203=[ -0.75 8.25] log(rel.dens)=-3.93, [0] accept, compute, 13.00s
config 204=[ -0.75 -8.25] log(rel.dens)=-1.19, [2] accept, compute, 13.06s
config 205=[ 1.50 8.25] log(rel.dens)=-2.57, [3] accept, compute, 13.15s
config 206=[ -1.50 -8.25] log(rel.dens)=-1.23, [1] accept, compute, 12.75s
config 207=[ 3.75 7.50] log(rel.dens)=-4.76, [0] accept, compute, 13.03s
config 208=[ 1.50 -8.25] log(rel.dens)=-3.63, [2] accept, compute, 12.92s
config 209=[ -1.50 8.25] log(rel.dens)=-5.33, [3] accept, compute, 12.39s
config 210=[ 2.25 8.25] log(rel.dens)=-3.02, [1] accept, compute, 15.36s
config 211=[ -2.25 -8.25] log(rel.dens)=-1.76, [0] accept, compute, 15.93s
config 212=[ 2.25 -8.25] log(rel.dens)=-5.30, [2] accept, compute, 16.25s
config 213=[ 3.00 8.25] log(rel.dens)=-3.93, [3] accept, compute, 16.05s
config 214=[ -3.00 -8.25] log(rel.dens)=-2.71, [1] accept, compute, 13.72s
config 215=[ 0.00 -9.00] log(rel.dens)=-1.84, [0] accept, compute, 13.20s
config 216=[ 0.00 9.00] log(rel.dens)=-3.90, [2] accept, compute, 13.21s
config 217=[ 0.75 9.00] log(rel.dens)=-3.35, [3] accept, compute, 13.49s
config 218=[ -0.75 -9.00] log(rel.dens)=-1.38, [1] accept, compute, 12.96s
config 219=[ -1.50 9.00] log(rel.dens)=-6.31, reject, 0.35s
config 220=[ -0.75 9.00] log(rel.dens)=-4.85, [0] accept, compute, 13.00s
config 221=[ 0.75 -9.00] log(rel.dens)=-2.71, [2] accept, compute, 12.43s
config 222=[ 3.75 8.25] log(rel.dens)=-5.17, [3] accept, compute, 13.25s
config 223=[ -1.50 -9.00] log(rel.dens)=-1.36, [1] accept, compute, 19.30s
config 224=[ 1.50 -9.00] log(rel.dens)=-4.01, [0] accept, compute, 20.43s
config 225=[ 1.50 9.00] log(rel.dens)=-3.31, [2] accept, compute, 20.48s
config 226=[ -2.25 -9.00] log(rel.dens)=-1.82, [3] accept, compute, 19.42s
config 227=[ 2.25 9.00] log(rel.dens)=-3.70, [1] accept, compute, 13.35s
config 228=[ 2.25 -9.00] log(rel.dens)=-5.69, [0] accept, compute, 12.74s
config 229=[ -3.00 -9.00] log(rel.dens)=-2.70, [2] accept, compute, 13.11s
config 230=[ 3.00 9.00] log(rel.dens)=-4.53, [3] accept, compute, 13.05s
config 231=[ 0.00 9.75] log(rel.dens)=-4.88, [1] accept, compute, 13.90s
config 232=[ -0.75 9.75] log(rel.dens)=-6.06, reject, 0.30s
config 233=[ -0.75 -9.75] log(rel.dens)=-1.57, [3] accept, compute, 14.00s
config 234=[ 0.00 -9.75] log(rel.dens)=-2.08, [0] accept, compute, 14.49s
config 235=[ 3.75 9.00] log(rel.dens)=-5.78, [2] accept, compute, 14.21s
config 236=[ 0.75 9.75] log(rel.dens)=-4.32, [1] accept, compute, 14.32s
config 237=[ 0.75 -9.75] log(rel.dens)=-3.01, [3] accept, compute, 14.00s
config 238=[ 1.50 -9.75] log(rel.dens)=-4.34, [2] accept, compute, 13.87s
config 239=[ 1.50 9.75] log(rel.dens)=-4.22, [0] accept, compute, 14.13s
config 240=[ 2.25 -9.75] log(rel.dens)=-6.01, reject, 0.35s
config 241=[ -1.50 -9.75] log(rel.dens)=-1.52, [1] accept, compute, 23.97s
config 242=[ 2.25 9.75] log(rel.dens)=-4.56, [2] accept, compute, 26.35s
config 243=[ -2.25 -9.75] log(rel.dens)=-1.87, [0] accept, compute, 26.66s
config 244=[ 3.00 9.75] log(rel.dens)=-5.33, [3] accept, compute, 26.59s
config 245=[ 3.75 9.75] log(rel.dens)=-6.51, reject, 0.55s
config 246=[ 0.00 10.50] log(rel.dens)=-6.15, reject, 0.34s
config 247=[ -3.00 -9.75] log(rel.dens)=-2.71, [1] accept, compute, 17.87s
config 248=[ 0.00 -10.50] log(rel.dens)=-2.36, [3] accept, compute, 16.12s
config 249=[ 0.75 -10.50] log(rel.dens)=-3.34, [0] accept, compute, 16.06s
config 250=[ -0.75 -10.50] log(rel.dens)=-1.78, [2] accept, compute, 16.73s
config 251=[ -1.50 -10.50] log(rel.dens)=-1.64, [1] accept, compute, 14.14s
config 252=[ 1.50 -10.50] log(rel.dens)=-4.69, [3] accept, compute, 14.13s
config 253=[ -2.25 -10.50] log(rel.dens)=-1.96, [0] accept, compute, 14.58s
config 254=[ -3.00 -10.50] log(rel.dens)=-2.74, [2] accept, compute, 14.57s
config 255=[ 0.00 -11.25] log(rel.dens)=-2.62, [1] accept, compute, 14.13s
config 256=[ 0.75 -11.25] log(rel.dens)=-3.72, [3] accept, compute, 14.77s
config 257=[ -0.75 -11.25] log(rel.dens)=-2.00, [0] accept, compute, 14.76s
config 258=[ 1.50 -11.25] log(rel.dens)=-5.10, [2] accept, compute, 15.72s
config 259=[ -1.50 -11.25] log(rel.dens)=-1.80, [1] accept, compute, 17.65s
config 260=[ -2.25 -11.25] log(rel.dens)=-2.06, [3] accept, compute, 17.60s
config 261=[ -3.00 -11.25] log(rel.dens)=-2.78, [0] accept, compute, 17.25s
config 262=[ 0.00 -12.00] log(rel.dens)=-2.90, [2] accept, compute, 16.13s
config 263=[ -0.75 -12.00] log(rel.dens)=-2.37, [1] accept, compute, 17.15s
config 264=[ -1.50 -12.00] log(rel.dens)=-1.97, [0] accept, compute, 17.40s
config 265=[ 0.75 -12.00] log(rel.dens)=-3.99, [3] accept, compute, 17.93s
config 266=[ 1.50 -12.00] log(rel.dens)=-5.45, [2] accept, compute, 17.39s
config 267=[ -2.25 -12.00] log(rel.dens)=-2.17, [1] accept, compute, 14.37s
config 268=[ 0.00 -12.75] log(rel.dens)=-3.27, [3] accept, compute, 15.48s
config 269=[ -3.00 -12.00] log(rel.dens)=-2.83, [0] accept, compute, 15.94s
config 270=[ -0.75 -12.75] log(rel.dens)=-2.47, [2] accept, compute, 16.12s
config 271=[ 0.75 -12.75] log(rel.dens)=-4.34, [1] accept, compute, 18.06s
config 272=[ 1.50 -12.75] log(rel.dens)=-5.84, [3] accept, compute, 18.44s
config 273=[ -1.50 -12.75] log(rel.dens)=-2.16, [0] accept, compute, 18.47s
config 274=[ -2.25 -12.75] log(rel.dens)=-2.30, [2] accept, compute, 18.18s
config 275=[ -3.00 -12.75] log(rel.dens)=-2.91, [1] accept, compute, 21.01s
config 276=[ 0.00 -13.50] log(rel.dens)=-3.51, [3] accept, compute, 20.89s
config 277=[ -0.75 -13.50] log(rel.dens)=-2.86, [0] accept, compute, 20.83s
config 278=[ 0.75 -13.50] log(rel.dens)=-4.70, [2] accept, compute, 21.05s
config 279=[ 1.50 -13.50] log(rel.dens)=-6.24, reject, 0.73s
config 280=[ -1.50 -13.50] log(rel.dens)=-2.36, [1] accept, compute, 18.01s
config 281=[ -2.25 -13.50] log(rel.dens)=-2.44, [0] accept, compute, 16.51s
config 282=[ 0.00 -14.25] log(rel.dens)=-3.83, [3] accept, compute, 16.23s
config 283=[ -3.00 -13.50] log(rel.dens)=-2.99, [2] accept, compute, 16.44s
config 284=[ -0.75 -14.25] log(rel.dens)=-3.12, [1] accept, compute, 16.85s
config 285=[ 0.75 -14.25] log(rel.dens)=-5.06, [0] accept, compute, 15.98s
config 286=[ -2.25 -14.25] log(rel.dens)=-2.75, [2] accept, compute, 15.82s
config 287=[ -1.50 -14.25] log(rel.dens)=-2.57, [3] accept, compute, 16.02s
config 288=[ -3.00 -14.25] log(rel.dens)=-3.06, [1] accept, compute, 12.20s
config 289=[ 0.00 -15.00] log(rel.dens)=-4.22, [0] accept, compute, 11.55s
config 290=[ 0.75 -15.00] log(rel.dens)=-5.44, [2] accept, compute, 11.78s
config 291=[ -0.75 -15.00] log(rel.dens)=-3.40, [3] accept, compute, 11.94s
config 292=[ -1.50 -15.00] log(rel.dens)=-2.79, [1] accept, compute, 12.30s
config 293=[ -2.25 -15.00] log(rel.dens)=-2.76, [0] accept, compute, 11.72s
config 294=[ -3.00 -15.00] log(rel.dens)=-3.19, [2] accept, compute, 11.76s
config 295=[ 0.00 -15.75] log(rel.dens)=-4.62, [3] accept, compute, 11.78s
config 296=[ 0.75 -15.75] log(rel.dens)=-5.82, [1] accept, compute, 10.72s
config 297=[ -0.75 -15.75] log(rel.dens)=-3.56, [0] accept, compute, 10.79s
config 298=[ -1.50 -15.75] log(rel.dens)=-3.03, [2] accept, compute, 10.82s
config 299=[ 0.75 -16.50] log(rel.dens)=-6.22, reject, 0.33s
config 300=[ -2.25 -15.75] log(rel.dens)=-2.94, [3] accept, compute, 10.84s
config 301=[ -3.00 -15.75] log(rel.dens)=-3.31, [1] accept, compute, 11.00s
config 302=[ 0.00 -16.50] log(rel.dens)=-4.97, [0] accept, compute, 10.88s
config 303=[ -1.50 -16.50] log(rel.dens)=-3.43, [3] accept, compute, 10.87s
config 304=[ -0.75 -16.50] log(rel.dens)=-3.87, [2] accept, compute, 11.05s
config 305=[ -2.25 -16.50] log(rel.dens)=-3.29, [1] accept, compute, 11.00s
config 306=[ -3.00 -16.50] log(rel.dens)=-3.44, [0] accept, compute, 11.11s
config 307=[ 0.00 -17.25] log(rel.dens)=-5.22, [3] accept, compute, 11.05s
config 308=[ -0.75 -17.25] log(rel.dens)=-4.19, [2] accept, compute, 11.01s
config 309=[ -1.50 -17.25] log(rel.dens)=-3.69, [1] accept, compute, 10.98s
config 310=[ -2.25 -17.25] log(rel.dens)=-3.50, [0] accept, compute, 10.81s
config 311=[ -3.00 -17.25] log(rel.dens)=-3.60, [3] accept, compute, 11.14s
config 312=[ 0.00 -18.00] log(rel.dens)=-5.71, [2] accept, compute, 11.29s
config 313=[ -0.75 -18.00] log(rel.dens)=-4.64, [1] accept, compute, 11.21s
config 314=[ 0.00 -18.75] log(rel.dens)=-6.10, reject, 0.27s
config 315=[ -1.50 -18.00] log(rel.dens)=-3.97, [0] accept, compute, 10.62s
config 316=[ -2.25 -18.00] log(rel.dens)=-3.73, [3] accept, compute, 10.20s
config 317=[ -3.00 -18.00] log(rel.dens)=-3.77, [2] accept, compute, 10.18s
Combine the densities with relative weights:
config 0/304=[ 0.00 0.00] weight = 0.978 adjusted weight = 0.017 neff = 484.07
config 1/304=[ 0.00 -0.75] weight = 0.953 adjusted weight = 0.016 neff = 480.90
config 2/304=[ -0.75 0.00] weight = 0.775 adjusted weight = 0.013 neff = 507.87
config 3/304=[ 0.75 0.00] weight = 0.813 adjusted weight = 0.014 neff = 460.65
config 4/304=[ 0.00 0.75] weight = 1.000 adjusted weight = 0.017 neff = 487.20
config 5/304=[ -0.75 -0.75] weight = 0.789 adjusted weight = 0.014 neff = 504.67
config 6/304=[ -0.75 0.75] weight = 0.597 adjusted weight = 0.010 neff = 511.37
config 7/304=[ 0.75 -0.75] weight = 0.736 adjusted weight = 0.013 neff = 457.57
config 8/304=[ 0.75 0.75] weight = 0.776 adjusted weight = 0.013 neff = 463.91
config 9/304=[ 0.00 -1.50] weight = 0.765 adjusted weight = 0.013 neff = 477.99
config 10/304=[ -1.50 0.00] weight = 0.341 adjusted weight = 0.006 neff = 532.18
config 11/304=[ 1.50 0.00] weight = 0.401 adjusted weight = 0.007 neff = 437.87
config 12/304=[ 0.00 1.50] weight = 0.836 adjusted weight = 0.014 neff = 490.59
config 13/304=[ -0.75 1.50] weight = 0.674 adjusted weight = 0.012 neff = 514.29
config 14/304=[ 0.75 -1.50] weight = 0.648 adjusted weight = 0.011 neff = 454.50
config 15/304=[ -0.75 -1.50] weight = 0.784 adjusted weight = 0.014 neff = 501.48
config 16/304=[ 0.75 1.50] weight = 0.800 adjusted weight = 0.014 neff = 467.02
config 17/304=[ -1.50 -0.75] weight = 0.392 adjusted weight = 0.007 neff = 528.86
config 18/304=[ 1.50 -0.75] weight = 0.344 adjusted weight = 0.006 neff = 434.85
config 19/304=[ -1.50 0.75] weight = 0.338 adjusted weight = 0.006 neff = 535.28
config 20/304=[ 1.50 0.75] weight = 0.428 adjusted weight = 0.007 neff = 440.97
config 21/304=[ -1.50 -1.50] weight = 0.435 adjusted weight = 0.008 neff = 525.56
config 22/304=[ 1.50 1.50] weight = 0.525 adjusted weight = 0.009 neff = 443.83
config 23/304=[ 1.50 -1.50] weight = 0.306 adjusted weight = 0.005 neff = 431.76
config 24/304=[ -1.50 1.50] weight = 0.288 adjusted weight = 0.005 neff = 538.55
config 25/304=[ 0.00 -2.25] weight = 0.814 adjusted weight = 0.014 neff = 474.64
config 26/304=[ 2.25 0.00] weight = 0.132 adjusted weight = 0.002 neff = 415.65
config 27/304=[ -2.25 0.00] weight = 0.111 adjusted weight = 0.002 neff = 556.50
config 28/304=[ 2.25 0.75] weight = 0.182 adjusted weight = 0.003 neff = 418.36
config 29/304=[ 0.00 2.25] weight = 0.913 adjusted weight = 0.016 neff = 493.54
config 30/304=[ -0.75 -2.25] weight = 0.756 adjusted weight = 0.013 neff = 498.30
config 31/304=[ 0.75 -2.25] weight = 0.553 adjusted weight = 0.010 neff = 451.45
config 32/304=[ 2.25 -0.75] weight = 0.124 adjusted weight = 0.002 neff = 412.50
config 33/304=[ -2.25 -0.75] weight = 0.127 adjusted weight = 0.002 neff = 553.24
config 34/304=[ -0.75 2.25] weight = 0.544 adjusted weight = 0.009 neff = 517.63
config 35/304=[ -2.25 0.75] weight = 0.094 adjusted weight = 0.002 neff = 559.75
config 36/304=[ 0.75 2.25] weight = 0.889 adjusted weight = 0.015 neff = 469.96
config 37/304=[ -2.25 -1.50] weight = 0.150 adjusted weight = 0.003 neff = 549.92
config 38/304=[ 2.25 -1.50] weight = 0.097 adjusted weight = 0.002 neff = 409.59
config 39/304=[ -1.50 -2.25] weight = 0.449 adjusted weight = 0.008 neff = 522.33
config 40/304=[ 2.25 1.50] weight = 0.209 adjusted weight = 0.004 neff = 421.32
config 41/304=[ -1.50 2.25] weight = 0.237 adjusted weight = 0.004 neff = 541.81
config 42/304=[ 1.50 -2.25] weight = 0.236 adjusted weight = 0.004 neff = 428.86
config 43/304=[ -2.25 1.50] weight = 0.078 adjusted weight = 0.001 neff = 563.00
config 44/304=[ 1.50 2.25] weight = 0.492 adjusted weight = 0.009 neff = 447.04
config 45/304=[ 0.00 3.00] weight = 0.816 adjusted weight = 0.014 neff = 496.72
config 46/304=[ 3.00 0.00] weight = 0.037 adjusted weight = 0.001 neff = 393.71
config 47/304=[ 0.00 -3.00] weight = 0.721 adjusted weight = 0.012 neff = 471.54
config 48/304=[ -3.00 0.00] weight = 0.020 adjusted weight = 0.000 neff = 581.09
config 49/304=[ -0.75 -3.00] weight = 0.720 adjusted weight = 0.012 neff = 495.13
config 50/304=[ -3.00 0.75] weight = 0.014 adjusted weight = 0.000 neff = 584.59
config 51/304=[ 3.00 0.75] weight = 0.046 adjusted weight = 0.001 neff = 396.57
config 52/304=[ -0.75 3.00] weight = 0.498 adjusted weight = 0.009 neff = 520.74
config 53/304=[ 0.75 -3.00] weight = 0.472 adjusted weight = 0.008 neff = 448.39
config 54/304=[ 0.75 3.00] weight = 0.830 adjusted weight = 0.014 neff = 473.11
config 55/304=[ 3.00 -0.75] weight = 0.028 adjusted weight = 0.000 neff = 390.88
config 56/304=[ -3.00 -0.75] weight = 0.026 adjusted weight = 0.000 neff = 577.75
config 57/304=[ 2.25 2.25] weight = 0.208 adjusted weight = 0.004 neff = 424.45
config 58/304=[ 2.25 -2.25] weight = 0.076 adjusted weight = 0.001 neff = 406.68
config 59/304=[ -2.25 -2.25] weight = 0.152 adjusted weight = 0.003 neff = 546.77
config 60/304=[ -2.25 2.25] weight = 0.058 adjusted weight = 0.001 neff = 566.33
config 61/304=[ -1.50 3.00] weight = 0.185 adjusted weight = 0.003 neff = 545.09
config 62/304=[ -3.00 -1.50] weight = 0.028 adjusted weight = 0.000 neff = 574.62
config 63/304=[ 1.50 -3.00] weight = 0.197 adjusted weight = 0.003 neff = 425.82
config 64/304=[ 3.00 1.50] weight = 0.052 adjusted weight = 0.001 neff = 399.55
config 65/304=[ 1.50 3.00] weight = 0.557 adjusted weight = 0.010 neff = 449.92
config 66/304=[ -3.00 1.50] weight = 0.012 adjusted weight = 0.000 neff = 587.68
config 67/304=[ -1.50 -3.00] weight = 0.448 adjusted weight = 0.008 neff = 519.13
config 68/304=[ 3.00 -1.50] weight = 0.021 adjusted weight = 0.000 neff = 388.08
config 69/304=[ -2.25 -3.00] weight = 0.175 adjusted weight = 0.003 neff = 543.42
config 70/304=[ 2.25 -3.00] weight = 0.052 adjusted weight = 0.001 neff = 403.95
config 71/304=[ 0.00 -3.75] weight = 0.635 adjusted weight = 0.011 neff = 468.42
config 72/304=[ -3.00 2.25] weight = 0.009 adjusted weight = 0.000 neff = 590.90
config 73/304=[ 3.00 -2.25] weight = 0.015 adjusted weight = 0.000 neff = 385.32
config 74/304=[ 3.00 2.25] weight = 0.065 adjusted weight = 0.001 neff = 402.32
config 75/304=[ -3.00 -2.25] weight = 0.037 adjusted weight = 0.001 neff = 571.20
config 76/304=[ 2.25 3.00] weight = 0.229 adjusted weight = 0.004 neff = 427.37
config 77/304=[ 0.00 3.75] weight = 0.677 adjusted weight = 0.012 neff = 499.94
config 78/304=[ -2.25 3.00] weight = 0.040 adjusted weight = 0.001 neff = 569.72
config 79/304=[ 3.75 0.00] weight = 0.005 adjusted weight = 0.000 neff = 372.88
config 80/304=[ -0.75 3.75] weight = 0.396 adjusted weight = 0.007 neff = 523.98
config 81/304=[ 0.75 -3.75] weight = 0.389 adjusted weight = 0.007 neff = 445.36
config 82/304=[ 3.75 0.75] weight = 0.007 adjusted weight = 0.000 neff = 375.63
config 83/304=[ 3.75 -0.75] weight = 0.005 adjusted weight = 0.000 neff = 369.93
config 84/304=[ 0.75 3.75] weight = 0.759 adjusted weight = 0.013 neff = 476.22
config 85/304=[ -0.75 -3.75] weight = 0.668 adjusted weight = 0.012 neff = 491.97
config 86/304=[ -1.50 3.75] weight = 0.125 adjusted weight = 0.002 neff = 548.49
config 87/304=[ 3.75 1.50] weight = 0.010 adjusted weight = 0.000 neff = 378.23
config 88/304=[ -1.50 -3.75] weight = 0.446 adjusted weight = 0.008 neff = 515.91
config 89/304=[ 1.50 -3.75] weight = 0.157 adjusted weight = 0.003 neff = 422.84
config 90/304=[ 1.50 3.75] weight = 0.530 adjusted weight = 0.009 neff = 452.99
config 91/304=[ 3.75 -1.50] weight = 0.003 adjusted weight = 0.000 neff = 367.23
config 92/304=[ -3.00 -3.00] weight = 0.043 adjusted weight = 0.001 neff = 567.91
config 93/304=[ 3.00 -3.00] weight = 0.011 adjusted weight = 0.000 neff = 382.44
config 94/304=[ 3.00 3.00] weight = 0.072 adjusted weight = 0.001 neff = 405.21
config 95/304=[ -3.00 3.00] weight = 0.006 adjusted weight = 0.000 neff = 594.20
config 96/304=[ 2.25 -3.75] weight = 0.040 adjusted weight = 0.001 neff = 401.03
config 97/304=[ 2.25 3.75] weight = 0.246 adjusted weight = 0.004 neff = 430.26
config 98/304=[ -2.25 -3.75] weight = 0.178 adjusted weight = 0.003 neff = 540.22
config 99/304=[ 3.75 2.25] weight = 0.012 adjusted weight = 0.000 neff = 381.08
config 100/304=[ -2.25 3.75] weight = 0.028 adjusted weight = 0.000 neff = 573.03
config 101/304=[ 0.00 4.50] weight = 0.551 adjusted weight = 0.010 neff = 503.11
config 102/304=[ 0.00 -4.50] weight = 0.543 adjusted weight = 0.009 neff = 465.34
config 103/304=[ 0.75 -4.50] weight = 0.314 adjusted weight = 0.005 neff = 442.35
config 104/304=[ -0.75 4.50] weight = 0.299 adjusted weight = 0.005 neff = 527.21
config 105/304=[ 0.75 4.50] weight = 0.570 adjusted weight = 0.010 neff = 479.54
config 106/304=[ -0.75 -4.50] weight = 0.540 adjusted weight = 0.009 neff = 488.99
config 107/304=[ -1.50 4.50] weight = 0.099 adjusted weight = 0.002 neff = 551.61
config 108/304=[ -1.50 -4.50] weight = 0.411 adjusted weight = 0.007 neff = 512.78
config 109/304=[ 1.50 4.50] weight = 0.430 adjusted weight = 0.007 neff = 456.22
config 110/304=[ 1.50 -4.50] weight = 0.121 adjusted weight = 0.002 neff = 419.90
config 111/304=[ -3.00 -3.75] weight = 0.046 adjusted weight = 0.001 neff = 564.70
config 112/304=[ 3.00 3.75] weight = 0.075 adjusted weight = 0.001 neff = 408.14
config 113/304=[ -3.00 3.75] weight = 0.004 adjusted weight = 0.000 neff = 597.57
config 114/304=[ 3.75 3.00] weight = 0.015 adjusted weight = 0.000 neff = 383.81
config 115/304=[ 3.00 -3.75] weight = 0.007 adjusted weight = 0.000 neff = 379.82
config 116/304=[ 2.25 -4.50] weight = 0.031 adjusted weight = 0.001 neff = 398.09
config 117/304=[ -2.25 -4.50] weight = 0.192 adjusted weight = 0.003 neff = 536.92
config 118/304=[ -2.25 4.50] weight = 0.017 adjusted weight = 0.000 neff = 576.42
config 119/304=[ 2.25 4.50] weight = 0.233 adjusted weight = 0.004 neff = 433.26
config 120/304=[ 0.00 5.25] weight = 0.405 adjusted weight = 0.007 neff = 506.33
config 121/304=[ 0.00 -5.25] weight = 0.459 adjusted weight = 0.008 neff = 462.26
config 122/304=[ -0.75 -5.25] weight = 0.541 adjusted weight = 0.009 neff = 485.69
config 123/304=[ 3.75 3.75] weight = 0.016 adjusted weight = 0.000 neff = 386.63
config 124/304=[ -0.75 5.25] weight = 0.182 adjusted weight = 0.003 neff = 530.65
config 125/304=[ 0.75 -5.25] weight = 0.228 adjusted weight = 0.004 neff = 439.49
config 126/304=[ 0.75 5.25] weight = 0.508 adjusted weight = 0.009 neff = 482.51
config 127/304=[ -3.00 -4.50] weight = 0.046 adjusted weight = 0.001 neff = 561.56
config 128/304=[ 3.00 -4.50] weight = 0.005 adjusted weight = 0.000 neff = 376.97
config 129/304=[ 1.50 5.25] weight = 0.359 adjusted weight = 0.006 neff = 459.30
config 130/304=[ 3.00 4.50] weight = 0.067 adjusted weight = 0.001 neff = 411.23
config 131/304=[ -1.50 5.25] weight = 0.065 adjusted weight = 0.001 neff = 554.88
config 132/304=[ -1.50 -5.25] weight = 0.394 adjusted weight = 0.007 neff = 509.57
config 133/304=[ 2.25 5.25] weight = 0.182 adjusted weight = 0.003 neff = 436.46
config 134/304=[ 1.50 -5.25] weight = 0.092 adjusted weight = 0.002 neff = 416.97
config 135/304=[ -2.25 5.25] weight = 0.011 adjusted weight = 0.000 neff = 579.67
config 136/304=[ -2.25 -5.25] weight = 0.169 adjusted weight = 0.003 neff = 533.90
config 137/304=[ 3.75 4.50] weight = 0.015 adjusted weight = 0.000 neff = 389.66
config 138/304=[ 2.25 -5.25] weight = 0.023 adjusted weight = 0.000 neff = 395.23
config 139/304=[ 0.00 -6.00] weight = 0.374 adjusted weight = 0.006 neff = 459.23
config 140/304=[ 0.00 6.00] weight = 0.247 adjusted weight = 0.004 neff = 509.71
config 141/304=[ 3.00 5.25] weight = 0.063 adjusted weight = 0.001 neff = 414.14
config 142/304=[ 0.75 -6.00] weight = 0.198 adjusted weight = 0.003 neff = 436.35
config 143/304=[ -0.75 -6.00] weight = 0.427 adjusted weight = 0.007 neff = 482.73
config 144/304=[ 3.00 -5.25] weight = 0.004 adjusted weight = 0.000 neff = 374.20
config 145/304=[ -3.00 -5.25] weight = 0.054 adjusted weight = 0.001 neff = 558.20
config 146/304=[ 0.75 6.00] weight = 0.371 adjusted weight = 0.006 neff = 485.67
config 147/304=[ -0.75 6.00] weight = 0.136 adjusted weight = 0.002 neff = 533.70
config 148/304=[ 1.50 6.00] weight = 0.307 adjusted weight = 0.005 neff = 462.24
config 149/304=[ -1.50 -6.00] weight = 0.385 adjusted weight = 0.007 neff = 506.34
config 150/304=[ -1.50 6.00] weight = 0.040 adjusted weight = 0.001 neff = 558.14
config 151/304=[ 1.50 -6.00] weight = 0.067 adjusted weight = 0.001 neff = 414.09
config 152/304=[ 2.25 -6.00] weight = 0.016 adjusted weight = 0.000 neff = 392.41
config 153/304=[ 2.25 6.00] weight = 0.148 adjusted weight = 0.003 neff = 439.48
config 154/304=[ -2.25 -6.00] weight = 0.169 adjusted weight = 0.003 neff = 530.68
config 155/304=[ -2.25 6.00] weight = 0.006 adjusted weight = 0.000 neff = 582.97
config 156/304=[ 3.75 5.25] weight = 0.016 adjusted weight = 0.000 neff = 392.31
config 157/304=[ -3.00 -6.00] weight = 0.059 adjusted weight = 0.001 neff = 554.90
config 158/304=[ 3.00 6.00] weight = 0.059 adjusted weight = 0.001 neff = 416.95
config 159/304=[ 3.00 -6.00] weight = 0.003 adjusted weight = 0.000 neff = 371.43
config 160/304=[ 0.00 -6.75] weight = 0.313 adjusted weight = 0.005 neff = 456.16
config 161/304=[ 0.00 6.75] weight = 0.177 adjusted weight = 0.003 neff = 512.73
config 162/304=[ -0.75 6.75] weight = 0.078 adjusted weight = 0.001 neff = 537.00
config 163/304=[ 0.75 -6.75] weight = 0.154 adjusted weight = 0.003 neff = 433.38
config 164/304=[ -0.75 -6.75] weight = 0.372 adjusted weight = 0.006 neff = 479.61
config 165/304=[ 0.75 6.75] weight = 0.217 adjusted weight = 0.004 neff = 489.02
config 166/304=[ -1.50 6.75] weight = 0.019 adjusted weight = 0.000 neff = 561.64
config 167/304=[ 1.50 6.75] weight = 0.218 adjusted weight = 0.004 neff = 465.34
config 168/304=[ 1.50 -6.75] weight = 0.050 adjusted weight = 0.001 neff = 411.18
config 169/304=[ -1.50 -6.75] weight = 0.339 adjusted weight = 0.006 neff = 503.24
config 170/304=[ 3.75 6.00] weight = 0.014 adjusted weight = 0.000 neff = 395.27
config 171/304=[ -2.25 -6.75] weight = 0.190 adjusted weight = 0.003 neff = 527.27
config 172/304=[ -2.25 6.75] weight = 0.003 adjusted weight = 0.000 neff = 586.22
config 173/304=[ 2.25 6.75] weight = 0.124 adjusted weight = 0.002 neff = 442.33
config 174/304=[ 2.25 -6.75] weight = 0.011 adjusted weight = 0.000 neff = 389.62
config 175/304=[ 3.00 6.75] weight = 0.046 adjusted weight = 0.001 neff = 419.90
config 176/304=[ -3.00 -6.75] weight = 0.064 adjusted weight = 0.001 neff = 551.63
config 177/304=[ 0.00 -7.50] weight = 0.253 adjusted weight = 0.004 neff = 453.13
config 178/304=[ 0.00 7.50] weight = 0.093 adjusted weight = 0.002 neff = 516.04
config 179/304=[ -0.75 -7.50] weight = 0.356 adjusted weight = 0.006 neff = 476.35
config 180/304=[ -0.75 7.50] weight = 0.041 adjusted weight = 0.001 neff = 540.27
config 181/304=[ 0.75 7.50] weight = 0.129 adjusted weight = 0.002 neff = 492.19
config 182/304=[ 0.75 -7.50] weight = 0.107 adjusted weight = 0.002 neff = 430.58
config 183/304=[ 1.50 -7.50] weight = 0.037 adjusted weight = 0.001 neff = 408.31
config 184/304=[ 1.50 7.50] weight = 0.137 adjusted weight = 0.002 neff = 468.46
config 185/304=[ -1.50 -7.50] weight = 0.318 adjusted weight = 0.006 neff = 500.05
config 186/304=[ -1.50 7.50] weight = 0.011 adjusted weight = 0.000 neff = 564.77
config 187/304=[ 3.75 6.75] weight = 0.012 adjusted weight = 0.000 neff = 398.06
config 188/304=[ 2.25 -7.50] weight = 0.007 adjusted weight = 0.000 neff = 387.07
config 189/304=[ 2.25 7.50] weight = 0.083 adjusted weight = 0.001 neff = 445.38
config 190/304=[ -2.25 -7.50] weight = 0.184 adjusted weight = 0.003 neff = 524.07
config 191/304=[ -3.00 -7.50] weight = 0.061 adjusted weight = 0.001 neff = 548.50
config 192/304=[ 3.00 7.50] weight = 0.033 adjusted weight = 0.001 neff = 422.85
config 193/304=[ 0.00 -8.25] weight = 0.201 adjusted weight = 0.003 neff = 450.13
config 194/304=[ 0.00 8.25] weight = 0.049 adjusted weight = 0.001 neff = 519.19
config 195/304=[ 0.75 -8.25] weight = 0.087 adjusted weight = 0.002 neff = 427.53
config 196/304=[ 0.75 8.25] weight = 0.077 adjusted weight = 0.001 neff = 495.19
config 197/304=[ -0.75 8.25] weight = 0.019 adjusted weight = 0.000 neff = 543.50
config 198/304=[ -0.75 -8.25] weight = 0.301 adjusted weight = 0.005 neff = 473.28
config 199/304=[ 1.50 8.25] weight = 0.076 adjusted weight = 0.001 neff = 471.58
config 200/304=[ -1.50 -8.25] weight = 0.289 adjusted weight = 0.005 neff = 496.89
config 201/304=[ 3.75 7.50] weight = 0.009 adjusted weight = 0.000 neff = 400.98
config 202/304=[ 1.50 -8.25] weight = 0.026 adjusted weight = 0.000 neff = 405.47
config 203/304=[ -1.50 8.25] weight = 0.005 adjusted weight = 0.000 neff = 568.01
config 204/304=[ 2.25 8.25] weight = 0.048 adjusted weight = 0.001 neff = 448.43
config 205/304=[ -2.25 -8.25] weight = 0.171 adjusted weight = 0.003 neff = 520.93
config 206/304=[ 2.25 -8.25] weight = 0.005 adjusted weight = 0.000 neff = 384.21
config 207/304=[ 3.00 8.25] weight = 0.019 adjusted weight = 0.000 neff = 425.89
config 208/304=[ -3.00 -8.25] weight = 0.066 adjusted weight = 0.001 neff = 545.20
config 209/304=[ 0.00 -9.00] weight = 0.159 adjusted weight = 0.003 neff = 447.14
config 210/304=[ 0.00 9.00] weight = 0.020 adjusted weight = 0.000 neff = 522.49
config 211/304=[ 0.75 9.00] weight = 0.035 adjusted weight = 0.001 neff = 498.38
config 212/304=[ -0.75 -9.00] weight = 0.250 adjusted weight = 0.004 neff = 470.22
config 213/304=[ -0.75 9.00] weight = 0.008 adjusted weight = 0.000 neff = 546.77
config 214/304=[ 0.75 -9.00] weight = 0.066 adjusted weight = 0.001 neff = 424.60
config 215/304=[ 3.75 8.25] weight = 0.006 adjusted weight = 0.000 neff = 403.82
config 216/304=[ -1.50 -9.00] weight = 0.255 adjusted weight = 0.004 neff = 493.78
config 217/304=[ 1.50 -9.00] weight = 0.018 adjusted weight = 0.000 neff = 402.71
config 218/304=[ 1.50 9.00] weight = 0.036 adjusted weight = 0.001 neff = 474.71
config 219/304=[ -2.25 -9.00] weight = 0.162 adjusted weight = 0.003 neff = 517.75
config 220/304=[ 2.25 9.00] weight = 0.024 adjusted weight = 0.000 neff = 451.50
config 221/304=[ 2.25 -9.00] weight = 0.003 adjusted weight = 0.000 neff = 381.48
config 222/304=[ -3.00 -9.00] weight = 0.067 adjusted weight = 0.001 neff = 541.98
config 223/304=[ 3.00 9.00] weight = 0.011 adjusted weight = 0.000 neff = 428.82
config 224/304=[ 0.00 9.75] weight = 0.008 adjusted weight = 0.000 neff = 525.66
config 225/304=[ -0.75 -9.75] weight = 0.207 adjusted weight = 0.004 neff = 467.18
config 226/304=[ 0.00 -9.75] weight = 0.124 adjusted weight = 0.002 neff = 444.17
config 227/304=[ 3.75 9.00] weight = 0.003 adjusted weight = 0.000 neff = 406.77
config 228/304=[ 0.75 9.75] weight = 0.013 adjusted weight = 0.000 neff = 501.57
config 229/304=[ 0.75 -9.75] weight = 0.049 adjusted weight = 0.001 neff = 421.71
config 230/304=[ 1.50 -9.75] weight = 0.013 adjusted weight = 0.000 neff = 399.87
config 231/304=[ 1.50 9.75] weight = 0.015 adjusted weight = 0.000 neff = 477.85
config 232/304=[ -1.50 -9.75] weight = 0.217 adjusted weight = 0.004 neff = 490.72
config 233/304=[ 2.25 9.75] weight = 0.010 adjusted weight = 0.000 neff = 454.58
config 234/304=[ -2.25 -9.75] weight = 0.153 adjusted weight = 0.003 neff = 514.57
config 235/304=[ 3.00 9.75] weight = 0.005 adjusted weight = 0.000 neff = 431.82
config 236/304=[ -3.00 -9.75] weight = 0.066 adjusted weight = 0.001 neff = 538.79
config 237/304=[ 0.00 -10.50] weight = 0.094 adjusted weight = 0.002 neff = 441.26
config 238/304=[ 0.75 -10.50] weight = 0.035 adjusted weight = 0.001 neff = 418.88
config 239/304=[ -0.75 -10.50] weight = 0.168 adjusted weight = 0.003 neff = 464.18
config 240/304=[ -1.50 -10.50] weight = 0.193 adjusted weight = 0.003 neff = 487.60
config 241/304=[ 1.50 -10.50] weight = 0.009 adjusted weight = 0.000 neff = 397.09
config 242/304=[ -2.25 -10.50] weight = 0.139 adjusted weight = 0.002 neff = 511.46
config 243/304=[ -3.00 -10.50] weight = 0.064 adjusted weight = 0.001 neff = 535.62
config 244/304=[ 0.00 -11.25] weight = 0.072 adjusted weight = 0.001 neff = 438.33
config 245/304=[ 0.75 -11.25] weight = 0.024 adjusted weight = 0.000 neff = 416.13
config 246/304=[ -0.75 -11.25] weight = 0.135 adjusted weight = 0.002 neff = 461.19
config 247/304=[ 1.50 -11.25] weight = 0.006 adjusted weight = 0.000 neff = 394.41
config 248/304=[ -1.50 -11.25] weight = 0.164 adjusted weight = 0.003 neff = 484.55
config 249/304=[ -2.25 -11.25] weight = 0.126 adjusted weight = 0.002 neff = 508.35
config 250/304=[ -3.00 -11.25] weight = 0.062 adjusted weight = 0.001 neff = 532.47
config 251/304=[ 0.00 -12.00] weight = 0.054 adjusted weight = 0.001 neff = 435.45
config 252/304=[ -0.75 -12.00] weight = 0.093 adjusted weight = 0.002 neff = 458.45
config 253/304=[ -1.50 -12.00] weight = 0.138 adjusted weight = 0.002 neff = 481.53
config 254/304=[ 0.75 -12.00] weight = 0.018 adjusted weight = 0.000 neff = 413.25
config 255/304=[ 1.50 -12.00] weight = 0.004 adjusted weight = 0.000 neff = 391.66
config 256/304=[ -2.25 -12.00] weight = 0.114 adjusted weight = 0.002 neff = 505.26
config 257/304=[ 0.00 -12.75] weight = 0.038 adjusted weight = 0.001 neff = 432.72
config 258/304=[ -3.00 -12.00] weight = 0.059 adjusted weight = 0.001 neff = 529.34
config 259/304=[ -0.75 -12.75] weight = 0.084 adjusted weight = 0.001 neff = 455.32
config 260/304=[ 0.75 -12.75] weight = 0.013 adjusted weight = 0.000 neff = 410.50
config 261/304=[ 1.50 -12.75] weight = 0.003 adjusted weight = 0.000 neff = 389.01
config 262/304=[ -1.50 -12.75] weight = 0.115 adjusted weight = 0.002 neff = 478.54
config 263/304=[ -2.25 -12.75] weight = 0.100 adjusted weight = 0.002 neff = 502.21
config 264/304=[ -3.00 -12.75] weight = 0.054 adjusted weight = 0.001 neff = 526.27
config 265/304=[ 0.00 -13.50] weight = 0.030 adjusted weight = 0.001 neff = 429.82
config 266/304=[ -0.75 -13.50] weight = 0.057 adjusted weight = 0.001 neff = 452.65
config 267/304=[ 0.75 -13.50] weight = 0.009 adjusted weight = 0.000 neff = 407.80
config 268/304=[ -1.50 -13.50] weight = 0.094 adjusted weight = 0.002 neff = 475.59
config 269/304=[ -2.25 -13.50] weight = 0.087 adjusted weight = 0.002 neff = 499.19
config 270/304=[ 0.00 -14.25] weight = 0.022 adjusted weight = 0.000 neff = 427.07
config 271/304=[ -3.00 -13.50] weight = 0.050 adjusted weight = 0.001 neff = 523.21
config 272/304=[ -0.75 -14.25] weight = 0.044 adjusted weight = 0.001 neff = 449.81
config 273/304=[ 0.75 -14.25] weight = 0.006 adjusted weight = 0.000 neff = 405.14
config 274/304=[ -2.25 -14.25] weight = 0.063 adjusted weight = 0.001 neff = 496.46
config 275/304=[ -1.50 -14.25] weight = 0.076 adjusted weight = 0.001 neff = 472.68
config 276/304=[ -3.00 -14.25] weight = 0.046 adjusted weight = 0.001 neff = 520.14
config 277/304=[ 0.00 -15.00] weight = 0.015 adjusted weight = 0.000 neff = 424.48
config 278/304=[ 0.75 -15.00] weight = 0.004 adjusted weight = 0.000 neff = 402.53
config 279/304=[ -0.75 -15.00] weight = 0.033 adjusted weight = 0.001 neff = 447.02
config 280/304=[ -1.50 -15.00] weight = 0.061 adjusted weight = 0.001 neff = 469.82
config 281/304=[ -2.25 -15.00] weight = 0.063 adjusted weight = 0.001 neff = 493.29
config 282/304=[ -3.00 -15.00] weight = 0.041 adjusted weight = 0.001 neff = 517.18
config 283/304=[ 0.00 -15.75] weight = 0.010 adjusted weight = 0.000 neff = 421.91
config 284/304=[ 0.75 -15.75] weight = 0.003 adjusted weight = 0.000 neff = 399.99
config 285/304=[ -0.75 -15.75] weight = 0.028 adjusted weight = 0.000 neff = 444.09
config 286/304=[ -1.50 -15.75] weight = 0.048 adjusted weight = 0.001 neff = 467.01
config 287/304=[ -2.25 -15.75] weight = 0.053 adjusted weight = 0.001 neff = 490.40
config 288/304=[ -3.00 -15.75] weight = 0.036 adjusted weight = 0.001 neff = 514.23
config 289/304=[ 0.00 -16.50] weight = 0.007 adjusted weight = 0.000 neff = 419.34
config 290/304=[ -1.50 -16.50] weight = 0.032 adjusted weight = 0.001 neff = 464.47
config 291/304=[ -0.75 -16.50] weight = 0.021 adjusted weight = 0.000 neff = 441.43
config 292/304=[ -2.25 -16.50] weight = 0.037 adjusted weight = 0.001 neff = 487.81
config 293/304=[ -3.00 -16.50] weight = 0.032 adjusted weight = 0.001 neff = 511.33
config 294/304=[ 0.00 -17.25] weight = 0.005 adjusted weight = 0.000 neff = 416.67
config 295/304=[ -0.75 -17.25] weight = 0.015 adjusted weight = 0.000 neff = 438.84
config 296/304=[ -1.50 -17.25] weight = 0.025 adjusted weight = 0.000 neff = 461.79
config 297/304=[ -2.25 -17.25] weight = 0.030 adjusted weight = 0.001 neff = 485.05
config 298/304=[ -3.00 -17.25] weight = 0.027 adjusted weight = 0.000 neff = 508.50
config 299/304=[ 0.00 -18.00] weight = 0.003 adjusted weight = 0.000 neff = 414.44
config 300/304=[ -0.75 -18.00] weight = 0.010 adjusted weight = 0.000 neff = 436.52
config 301/304=[ -1.50 -18.00] weight = 0.019 adjusted weight = 0.000 neff = 459.19
config 302/304=[ -2.25 -18.00] weight = 0.024 adjusted weight = 0.000 neff = 482.36
config 303/304=[ -3.00 -18.00] weight = 0.023 adjusted weight = 0.000 neff = 505.74
Done.
Expected effective number of parameters: 482.101(34.431), eqv.#replicates: 6.314
DIC:
Mean of Deviance................. 2062.99
Deviance at Mean................. 1676.5
Effective number of parameters... 386.49
DIC.............................. 2449.48
Marginal likelihood: Integration -997.606002 Gaussian-approx -999.537146
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376e28548/Model.ini]
Preparations : 0.124 seconds
Approx inference: 1363.572 seconds [0.2|0.0|2.1|84.3|13.4]%
Output : 1.668 seconds
---------------------------------
Total : 1365.365 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d34538af1] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35037935b]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d370ab6481]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35037935b]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 1, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 1, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 1, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37548e4a1] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3c1bf08a]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d328bbc4d8]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d349a422f]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d38c6d66f] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3362815e9] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d31b68fc6] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37899110a] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d392de561] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d3242e47fc] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35a7803f2] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d37d4b3344] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/data.files/filee1d35412f59f] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fd6a1602fa0
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1122.524059 fn= 1 theta= 4.000000 3.990000 range=[-2.318 2.670]
max.logdens= -1122.491940 fn= 2 theta= 3.990000 4.000000 range=[-2.318 2.670]
max.logdens= -1115.900368 fn= 5 theta= 3.004363 3.906686 range=[-2.320 2.690]
max.logdens= -1115.890646 fn= 6 theta= 3.004363 3.896686 range=[-2.320 2.690]
max.logdens= -1115.785730 fn= 8 theta= 2.994363 3.906686 range=[-2.320 2.690]
max.logdens= -1109.743771 fn= 11 theta= 2.556327 3.864694 range=[-2.321 2.700]
max.logdens= -1109.739135 fn= 12 theta= 2.556327 3.854694 range=[-2.321 2.701]
max.logdens= -1109.573523 fn= 13 theta= 2.546327 3.864694 range=[-2.321 2.700]
max.logdens= -1100.979500 fn= 16 theta= 2.130692 3.824803 range=[-2.321 2.704]
max.logdens= -1100.976137 fn= 17 theta= 2.130692 3.814803 range=[-2.321 2.705]
max.logdens= -1100.733865 fn= 18 theta= 2.120692 3.824803 range=[-2.321 2.704]
max.logdens= -1089.533527 fn= 21 theta= 1.726339 3.786905 range=[-2.318 2.806]
max.logdens= -1089.531254 fn= 22 theta= 1.726339 3.776905 range=[-2.318 2.807]
max.logdens= -1089.212456 fn= 23 theta= 1.716339 3.786905 range=[-2.318 2.824]
max.logdens= -1076.274048 fn= 26 theta= 1.342204 3.750903 range=[-2.310 3.466]
max.logdens= -1076.273263 fn= 27 theta= 1.342204 3.740903 range=[-2.310 3.467]
max.logdens= -1075.906697 fn= 29 theta= 1.332204 3.750903 range=[-2.310 3.482]
max.logdens= -1062.912703 fn= 31 theta= 0.977275 3.716701 range=[-2.319 3.983]
max.logdens= -1062.551370 fn= 33 theta= 0.967275 3.716701 range=[-2.320 3.995]
max.logdens= -1051.370789 fn= 36 theta= 0.630593 3.684209 range=[-2.349 4.366]
max.logdens= -1051.072088 fn= 38 theta= 0.620593 3.684209 range=[-2.350 4.376]
max.logdens= -1043.343066 fn= 41 theta= 0.301245 3.653341 range=[-2.378 4.654]
max.logdens= -1043.161964 fn= 43 theta= 0.291245 3.653341 range=[-2.379 4.662]
max.logdens= -1040.158426 fn= 46 theta= -0.011636 3.624017 range=[-2.410 4.878]
max.logdens= -1040.143792 fn= 48 theta= -0.021636 3.624017 range=[-2.411 4.885]
max.logdens= -1040.143251 fn= 50 theta= -0.011636 3.634017 range=[-2.410 4.878]
max.logdens= -1040.142206 fn= 52 theta= -0.032637 3.622049 range=[-2.412 4.892]
max.logdens= -1040.141158 fn= 54 theta= -0.042637 3.622049 range=[-2.413 4.898]
max.logdens= -1040.127373 fn= 56 theta= -0.032637 3.632049 range=[-2.412 4.892]
Iter=1 |grad|=1.28 |x-x.old|=2.86 |f-f.old|=82.4
max.logdens= -1040.122376 fn= 58 theta= -0.066656 3.681407 range=[-2.416 4.914]
max.logdens= -1040.105902 fn= 59 theta= -0.066656 3.671407 range=[-2.416 4.914]
max.logdens= -1040.077446 fn= 61 theta= -0.056656 3.681407 range=[-2.415 4.908]
max.logdens= -1040.073154 fn= 66 theta= -0.079817 3.721820 range=[-2.418 4.923]
max.logdens= -1040.071283 fn= 71 theta= -0.075386 3.714089 range=[-2.417 4.920]
max.logdens= -1040.070909 fn= 76 theta= -0.073615 3.710999 range=[-2.417 4.919]
Iter=2 |grad|=3.27 |x-x.old|=0.0725 |f-f.old|=0.0457 Reached numerical limit!
Number of function evaluations = 88
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
92.638184 3.398367
3.398367 12.940587
Eigenvectors of the Hessian
0.999095 -0.042525
0.042525 0.999095
Eigenvalues of the Hessian
92.782831
12.795940
StDev/Correlation matrix (scaled inverse Hessian)
0.104402 -0.098152
0.279335
max.logdens= -1039.522524 fn= 99 theta= -0.107391 4.269599 range=[-2.421 4.943]
Compute corrected stdev for theta[0]: negative 0.970648 positive 1.695725
Compute corrected stdev for theta[1]: negative 1.673479 positive 1.000000
config 0=[ -0.75 0.00] log(rel.dens)=-0.49, [1] accept, compute, 15.72s
config 1=[ 0.00 -0.75] log(rel.dens)=-0.25, [3] accept, compute, 15.91s
config 2=[ 0.75 0.00] log(rel.dens)= 0.05, [0] accept, compute, 16.56s
config 3=[ 0.00 0.00] log(rel.dens)=-0.00, [2] accept, compute, 16.87s
config 4=[ -0.75 0.75] log(rel.dens)=-0.38, [3] accept, compute, 16.05s
config 5=[ 0.00 0.75] log(rel.dens)= 0.16, [1] accept, compute, 16.43s
config 6=[ -0.75 -0.75] log(rel.dens)=-0.65, [0] accept, compute, 15.84s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.33, [2] accept, compute, 16.28s
config 8=[ 0.75 0.75] log(rel.dens)= 0.31, [3] accept, compute, 14.10s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.53, [1] accept, compute, 13.99s
config 10=[ -1.50 0.00] log(rel.dens)=-1.42, [0] accept, compute, 14.00s
config 11=[ 1.50 0.00] log(rel.dens)=-0.34, [2] accept, compute, 13.68s
config 12=[ -0.75 1.50] log(rel.dens)=-0.26, [1] accept, compute, 10.44s
config 13=[ 0.00 1.50] log(rel.dens)= 0.35, [3] accept, compute, 10.67s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.54, [0] accept, compute, 10.62s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.88, [2] accept, compute, 11.16s
config 16=[ -1.50 -0.75] log(rel.dens)=-1.47, [3] accept, compute, 13.94s
config 17=[ 0.75 1.50] log(rel.dens)= 0.57, [1] accept, compute, 14.65s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.65, [0] accept, compute, 14.26s
config 19=[ -1.50 0.75] log(rel.dens)=-1.33, [2] accept, compute, 14.08s
config 20=[ 1.50 0.75] log(rel.dens)= 0.02, [3] accept, compute, 15.17s
config 21=[ -1.50 -1.50] log(rel.dens)=-1.66, [1] accept, compute, 15.19s
config 22=[ 1.50 1.50] log(rel.dens)= 0.31, [0] accept, compute, 15.22s
config 23=[ 1.50 -1.50] log(rel.dens)=-0.94, [2] accept, compute, 14.83s
config 24=[ -1.50 1.50] log(rel.dens)=-1.04, [3] accept, compute, 14.86s
max.logdens= -1039.449285 fn= 131 theta= -0.110363 4.339424 range=[-2.421 4.945]
config 25=[ 2.25 0.00] log(rel.dens)=-1.04, [0] accept, compute, 14.84s
config 26=[ 0.00 -2.25] log(rel.dens)=-0.80, [1] accept, compute, 15.23s
config 27=[ -2.25 0.00] log(rel.dens)=-2.62, [2] accept, compute, 15.31s
config 28=[ 0.00 2.25] log(rel.dens)= 0.65, [3] accept, compute, 16.02s
config 29=[ -0.75 -2.25] log(rel.dens)=-1.22, [1] accept, compute, 15.47s
config 30=[ 2.25 0.75] log(rel.dens)=-0.62, [0] accept, compute, 15.95s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.87, [2] accept, compute, 16.01s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.72, [3] accept, compute, 13.37s
config 33=[ 2.25 -0.75] log(rel.dens)=-1.30, [1] accept, compute, 13.08s
max.logdens= -1039.288537 fn= 139 theta= -0.032571 4.342735 range=[-2.413 4.895]
config 34=[ -0.75 2.25] log(rel.dens)= 0.07, [0] accept, compute, 13.26s
config 35=[ -2.25 0.75] log(rel.dens)=-2.52, [2] accept, compute, 13.06s
config 36=[ -2.25 -1.50] log(rel.dens)=-2.90, [1] accept, compute, 12.98s
config 37=[ 0.75 2.25] log(rel.dens)= 0.81, [3] accept, compute, 13.11s
config 38=[ 2.25 -1.50] log(rel.dens)=-1.66, [0] accept, compute, 12.82s
config 39=[ -1.50 -2.25] log(rel.dens)=-1.87, [2] accept, compute, 13.00s
config 40=[ 2.25 1.50] log(rel.dens)=-0.31, [1] accept, compute, 13.87s
config 41=[ 1.50 -2.25] log(rel.dens)=-1.33, [0] accept, compute, 13.77s
config 42=[ -1.50 2.25] log(rel.dens)=-0.92, [3] accept, compute, 14.30s
max.logdens= -1039.262074 fn= 148 theta= -0.119279 4.548899 range=[-2.423 4.952]
config 43=[ -2.25 1.50] log(rel.dens)=-2.43, [2] accept, compute, 14.07s
config 44=[ 1.50 2.25] log(rel.dens)= 0.52, [1] accept, compute, 12.29s
config 45=[ 0.00 3.00] log(rel.dens)= 0.84, [0] accept, compute, 12.63s
config 46=[ 3.00 0.00] log(rel.dens)=-1.97, [3] accept, compute, 12.49s
config 47=[ 0.00 -3.00] log(rel.dens)=-1.12, [2] accept, compute, 12.28s
config 48=[ -3.00 0.00] log(rel.dens)=-4.40, [1] accept, compute, 10.45s
config 49=[ -0.75 -3.00] log(rel.dens)=-1.45, [0] accept, compute, 10.36s
config 50=[ -3.00 0.75] log(rel.dens)=-4.44, [3] accept, compute, 10.45s
max.logdens= -1039.065582 fn= 157 theta= -0.041487 4.552210 range=[-2.414 4.901]
config 51=[ 3.00 0.75] log(rel.dens)=-1.59, [2] accept, compute, 10.56s
config 52=[ -0.75 3.00] log(rel.dens)= 0.22, [1] accept, compute, 10.69s
config 53=[ 0.75 -3.00] log(rel.dens)=-1.20, [0] accept, compute, 10.91s
config 54=[ 0.75 3.00] log(rel.dens)= 1.03, [3] accept, compute, 10.90s
config 55=[ 3.00 -0.75] log(rel.dens)=-2.32, [2] accept, compute, 10.55s
config 56=[ -3.00 -0.75] log(rel.dens)=-4.44, [1] accept, compute, 15.69s
config 57=[ 2.25 2.25] log(rel.dens)=-0.13, [0] accept, compute, 15.80s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.03, [3] accept, compute, 15.97s
config 59=[ -2.25 -2.25] log(rel.dens)=-3.09, [2] accept, compute, 16.17s
config 60=[ -2.25 2.25] log(rel.dens)=-2.42, [1] accept, compute, 11.60s
config 61=[ -1.50 3.00] log(rel.dens)=-0.84, [0] accept, compute, 11.33s
config 62=[ -3.00 -1.50] log(rel.dens)=-4.60, [3] accept, compute, 11.50s
config 63=[ 1.50 -3.00] log(rel.dens)=-1.65, [2] accept, compute, 11.26s
config 64=[ 3.00 1.50] log(rel.dens)=-1.27, [1] accept, compute, 10.83s
config 65=[ 1.50 3.00] log(rel.dens)= 0.86, [0] accept, compute, 10.77s
config 66=[ -3.00 1.50] log(rel.dens)=-4.33, [3] accept, compute, 10.76s
config 67=[ -1.50 -3.00] log(rel.dens)=-2.12, [2] accept, compute, 10.75s
config 68=[ 3.00 -1.50] log(rel.dens)=-2.71, [1] accept, compute, 10.85s
config 69=[ -2.25 -3.00] log(rel.dens)=-3.25, [0] accept, compute, 10.90s
config 70=[ 2.25 -3.00] log(rel.dens)=-2.46, [3] accept, compute, 11.03s
config 71=[ 0.00 -3.75] log(rel.dens)=-1.46, [2] accept, compute, 11.16s
config 72=[ -3.00 2.25] log(rel.dens)=-4.43, [1] accept, compute, 11.42s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.12, [0] accept, compute, 11.38s
config 74=[ 3.00 2.25] log(rel.dens)=-0.93, [3] accept, compute, 11.31s
config 75=[ -3.00 -2.25] log(rel.dens)=-4.67, [2] accept, compute, 11.33s
config 76=[ 2.25 3.00] log(rel.dens)= 0.28, [1] accept, compute, 11.34s
config 77=[ -3.75 0.00] log(rel.dens)=-6.72, reject, 0.32s
config 78=[ 0.00 3.75] log(rel.dens)= 1.00, [0] accept, compute, 11.50s
config 79=[ -2.25 3.00] log(rel.dens)=-2.39, [3] accept, compute, 11.36s
config 80=[ 3.75 0.00] log(rel.dens)=-3.31, [2] accept, compute, 11.25s
config 81=[ -0.75 3.75] log(rel.dens)= 0.35, [1] accept, compute, 14.06s
config 82=[ 0.75 -3.75] log(rel.dens)=-1.57, [0] accept, compute, 14.25s
max.logdens= -1038.836606 fn= 188 theta= -0.050403 4.761685 range=[-2.415 4.908]
config 83=[ 3.75 0.75] log(rel.dens)=-2.91, [3] accept, compute, 14.67s
config 84=[ 3.75 -0.75] log(rel.dens)=-3.63, [2] accept, compute, 14.77s
config 85=[ 0.75 3.75] log(rel.dens)= 1.26, [1] accept, compute, 15.85s
config 86=[ -0.75 -3.75] log(rel.dens)=-1.72, [0] accept, compute, 15.48s
config 87=[ -1.50 3.75] log(rel.dens)=-0.81, [3] accept, compute, 15.52s
config 88=[ 3.75 1.50] log(rel.dens)=-2.48, [2] accept, compute, 15.23s
config 89=[ -1.50 -3.75] log(rel.dens)=-2.39, [1] accept, compute, 14.48s
config 90=[ 1.50 -3.75] log(rel.dens)=-2.03, [0] accept, compute, 14.91s
config 91=[ 3.75 -1.50] log(rel.dens)=-4.04, [2] accept, compute, 14.46s
config 92=[ 1.50 3.75] log(rel.dens)= 1.12, [3] accept, compute, 14.57s
config 93=[ -3.00 -3.00] log(rel.dens)=-4.82, [1] accept, compute, 14.93s
config 94=[ 3.00 -3.00] log(rel.dens)=-3.49, [0] accept, compute, 14.87s
config 95=[ 3.00 3.00] log(rel.dens)=-0.68, [2] accept, compute, 14.69s
config 96=[ -3.00 3.00] log(rel.dens)=-4.34, [3] accept, compute, 15.54s
config 97=[ 2.25 -3.75] log(rel.dens)=-2.85, [1] accept, compute, 15.95s
config 98=[ 2.25 3.75] log(rel.dens)= 0.62, [0] accept, compute, 15.80s
config 99=[ -2.25 -3.75] log(rel.dens)=-3.52, [2] accept, compute, 15.63s
config 100=[ 3.75 -2.25] log(rel.dens)=-4.54, [3] accept, compute, 15.74s
config 101=[ -2.25 3.75] log(rel.dens)=-2.34, [0] accept, compute, 15.92s
config 102=[ 3.75 2.25] log(rel.dens)=-2.10, [1] accept, compute, 16.12s
config 103=[ 0.00 4.50] log(rel.dens)= 1.17, [2] accept, compute, 16.27s
config 104=[ 0.00 -4.50] log(rel.dens)=-1.84, [3] accept, compute, 16.11s
config 105=[ 4.50 -0.75] log(rel.dens)=-5.28, [1] accept, compute, 15.38s
config 106=[ 4.50 0.00] log(rel.dens)=-4.88, [0] accept, compute, 15.39s
config 107=[ 0.75 -4.50] log(rel.dens)=-1.96, [2] accept, compute, 14.93s
max.logdens= -1038.644645 fn= 212 theta= -0.059319 4.971160 range=[-2.416 4.914]
config 108=[ -0.75 4.50] log(rel.dens)= 0.46, [3] accept, compute, 15.53s
config 109=[ -0.75 -4.50] log(rel.dens)=-2.10, [0] accept, compute, 16.50s
config 110=[ 0.75 4.50] log(rel.dens)= 1.45, [1] accept, compute, 17.02s
config 111=[ 4.50 0.75] log(rel.dens)=-4.39, [2] accept, compute, 17.15s
config 112=[ -1.50 4.50] log(rel.dens)=-0.79, [3] accept, compute, 16.29s
config 113=[ 4.50 -1.50] log(rel.dens)=-5.63, [0] accept, compute, 16.22s
config 114=[ -1.50 -4.50] log(rel.dens)=-2.71, [1] accept, compute, 16.52s
config 115=[ 1.50 4.50] log(rel.dens)= 1.36, [2] accept, compute, 16.32s
config 116=[ 4.50 1.50] log(rel.dens)=-4.04, [3] accept, compute, 16.10s
config 117=[ 1.50 -4.50] log(rel.dens)=-2.44, [0] accept, compute, 11.70s
config 118=[ 3.75 -3.00] log(rel.dens)=-4.86, [1] accept, compute, 11.98s
config 119=[ -3.00 -3.75] log(rel.dens)=-5.03, [2] accept, compute, 12.00s
config 120=[ 3.00 3.75] log(rel.dens)=-0.22, [3] accept, compute, 12.31s
config 121=[ 4.50 -2.25] log(rel.dens)=-6.03, reject, 0.51s
config 122=[ -3.00 3.75] log(rel.dens)=-4.40, [0] accept, compute, 14.31s
config 123=[ 3.00 -3.75] log(rel.dens)=-3.95, [2] accept, compute, 14.61s
config 124=[ 3.75 3.00] log(rel.dens)=-1.78, [1] accept, compute, 14.96s
config 125=[ 2.25 -4.50] log(rel.dens)=-3.23, [3] accept, compute, 15.64s
config 126=[ -2.25 -4.50] log(rel.dens)=-3.77, [0] accept, compute, 21.43s
config 127=[ 5.25 0.00] log(rel.dens)=-6.67, reject, 1.14s
config 128=[ -2.25 4.50] log(rel.dens)=-2.39, [2] accept, compute, 21.73s
config 129=[ 2.25 4.50] log(rel.dens)= 0.91, [1] accept, compute, 22.30s
config 130=[ 4.50 2.25] log(rel.dens)=-3.59, [3] accept, compute, 22.64s
config 131=[ 0.00 5.25] log(rel.dens)= 1.27, [0] accept, compute, 16.10s
config 132=[ -0.75 -5.25] log(rel.dens)=-2.47, [1] accept, compute, 15.21s
config 133=[ 0.00 -5.25] log(rel.dens)=-2.25, [2] accept, compute, 16.06s
max.logdens= -1038.569405 fn= 239 theta= -0.068235 5.180635 range=[-2.417 4.920]
config 134=[ 3.75 3.75] log(rel.dens)=-1.44, [3] accept, compute, 13.93s
config 135=[ -0.75 5.25] log(rel.dens)= 0.47, [0] accept, compute, 12.27s
config 136=[ 0.75 5.25] log(rel.dens)= 1.53, [2] accept, compute, 12.59s
config 137=[ 0.75 -5.25] log(rel.dens)=-2.39, [1] accept, compute, 12.68s
config 138=[ 3.75 -3.75] log(rel.dens)=-5.33, [3] accept, compute, 12.18s
config 139=[ -3.00 -4.50] log(rel.dens)=-5.26, [0] accept, compute, 12.17s
config 140=[ -3.00 4.50] log(rel.dens)=-4.41, [1] accept, compute, 12.02s
config 141=[ 3.00 -4.50] log(rel.dens)=-4.32, [2] accept, compute, 12.13s
max.logdens= -1038.515351 fn= 247 theta= 0.009557 5.183946 range=[-2.408 4.869]
config 142=[ 3.00 4.50] log(rel.dens)= 0.10, [3] accept, compute, 11.87s
config 143=[ 4.50 3.00] log(rel.dens)=-3.28, [0] accept, compute, 10.73s
config 144=[ 1.50 5.25] log(rel.dens)= 1.58, [1] accept, compute, 10.62s
config 145=[ -1.50 5.25] log(rel.dens)=-0.69, [2] accept, compute, 10.77s
config 146=[ -1.50 -5.25] log(rel.dens)=-3.09, [3] accept, compute, 10.71s
config 147=[ 1.50 -5.25] log(rel.dens)=-2.87, [0] accept, compute, 11.58s
config 148=[ 2.25 5.25] log(rel.dens)= 1.12, [1] accept, compute, 11.63s
config 149=[ -2.25 5.25] log(rel.dens)=-2.41, [2] accept, compute, 11.63s
config 150=[ -2.25 -5.25] log(rel.dens)=-4.21, [3] accept, compute, 11.37s
config 151=[ 2.25 -5.25] log(rel.dens)=-3.72, [0] accept, compute, 11.42s
config 152=[ 4.50 3.75] log(rel.dens)=-2.81, [1] accept, compute, 11.48s
config 153=[ 3.75 -4.50] log(rel.dens)=-5.72, [3] accept, compute, 11.41s
config 154=[ 3.75 4.50] log(rel.dens)=-1.08, [2] accept, compute, 11.50s
config 155=[ 0.00 -6.00] log(rel.dens)=-2.70, [0] accept, compute, 11.40s
config 156=[ 3.00 5.25] log(rel.dens)= 0.41, [3] accept, compute, 11.41s
config 157=[ 0.00 6.00] log(rel.dens)= 1.44, [1] accept, compute, 11.67s
config 158=[ 0.75 -6.00] log(rel.dens)=-2.85, [2] accept, compute, 11.63s
config 159=[ -3.00 5.25] log(rel.dens)=-4.45, [0] accept, compute, 14.14s
max.logdens= -1038.263768 fn= 266 theta= -0.077151 5.390110 range=[-2.418 4.926]
config 160=[ 3.00 -5.25] log(rel.dens)=-4.77, [1] accept, compute, 14.05s
config 161=[ -0.75 -6.00] log(rel.dens)=-2.92, [3] accept, compute, 14.35s
config 162=[ -3.00 -5.25] log(rel.dens)=-5.58, [2] accept, compute, 14.23s
config 163=[ 0.75 6.00] log(rel.dens)= 1.83, [0] accept, compute, 12.61s
config 164=[ 1.50 6.00] log(rel.dens)= 1.83, [3] accept, compute, 12.17s
config 165=[ -0.75 6.00] log(rel.dens)= 0.62, [1] accept, compute, 12.42s
config 166=[ -1.50 -6.00] log(rel.dens)=-3.50, [2] accept, compute, 12.27s
config 167=[ -1.50 6.00] log(rel.dens)=-0.59, [0] accept, compute, 11.48s
config 168=[ 1.50 -6.00] log(rel.dens)=-3.34, [3] accept, compute, 11.58s
config 169=[ 4.50 4.50] log(rel.dens)=-2.46, [1] accept, compute, 11.56s
config 170=[ 2.25 -6.00] log(rel.dens)=-4.14, [2] accept, compute, 11.54s
config 171=[ 3.75 -5.25] log(rel.dens)=-6.11, reject, 0.33s
config 172=[ -2.25 -6.00] log(rel.dens)=-4.51, [0] accept, compute, 13.30s
config 173=[ -3.00 -6.00] log(rel.dens)=-6.05, reject, 0.22s
config 174=[ -2.25 6.00] log(rel.dens)=-2.35, [3] accept, compute, 13.61s
config 175=[ 2.25 6.00] log(rel.dens)= 1.45, [1] accept, compute, 13.74s
config 176=[ 3.75 5.25] log(rel.dens)=-0.68, [2] accept, compute, 13.80s
config 177=[ 3.00 6.00] log(rel.dens)= 0.68, [0] accept, compute, 12.48s
config 178=[ -3.00 6.00] log(rel.dens)=-4.57, [1] accept, compute, 12.38s
config 179=[ 3.00 -6.00] log(rel.dens)=-5.28, [3] accept, compute, 12.61s
config 180=[ 0.00 -6.75] log(rel.dens)=-3.22, [2] accept, compute, 12.39s
config 181=[ 0.00 6.75] log(rel.dens)= 1.58, [0] accept, compute, 11.45s
max.logdens= -1038.163701 fn= 288 theta= -0.086067 5.599585 range=[-2.419 4.933]
config 182=[ -0.75 6.75] log(rel.dens)= 0.73, [1] accept, compute, 11.89s
config 183=[ 0.75 -6.75] log(rel.dens)=-3.37, [3] accept, compute, 11.86s
config 184=[ -0.75 -6.75] log(rel.dens)=-3.50, [2] accept, compute, 11.88s
max.logdens= -1038.049316 fn= 291 theta= -0.008275 5.602896 range=[-2.410 4.881]
config 185=[ 0.75 6.75] log(rel.dens)= 1.93, [0] accept, compute, 13.37s
config 186=[ 4.50 5.25] log(rel.dens)=-2.06, [3] accept, compute, 13.50s
config 187=[ -1.50 6.75] log(rel.dens)=-0.68, [1] accept, compute, 13.68s
config 188=[ 1.50 6.75] log(rel.dens)= 2.05, [2] accept, compute, 13.59s
config 189=[ 1.50 -6.75] log(rel.dens)=-3.85, [0] accept, compute, 11.64s
config 190=[ -1.50 -6.75] log(rel.dens)=-4.04, [3] accept, compute, 11.88s
config 191=[ 3.75 6.00] log(rel.dens)=-0.38, [1] accept, compute, 11.87s
config 192=[ -2.25 -6.75] log(rel.dens)=-4.99, [2] accept, compute, 11.78s
config 193=[ -2.25 6.75] log(rel.dens)=-2.38, [0] accept, compute, 13.93s
config 194=[ 2.25 6.75] log(rel.dens)= 1.70, [3] accept, compute, 13.41s
config 195=[ 2.25 -6.75] log(rel.dens)=-4.63, [1] accept, compute, 13.48s
config 196=[ 3.00 6.75] log(rel.dens)= 0.99, [2] accept, compute, 13.64s
config 197=[ -3.00 6.75] log(rel.dens)=-4.71, [0] accept, compute, 13.07s
config 198=[ 3.00 -6.75] log(rel.dens)=-5.69, [3] accept, compute, 13.43s
config 199=[ 0.00 7.50] log(rel.dens)= 1.69, [1] accept, compute, 13.43s
config 200=[ 4.50 6.00] log(rel.dens)=-1.69, [2] accept, compute, 13.28s
config 201=[ 0.00 -7.50] log(rel.dens)=-3.82, [0] accept, compute, 11.96s
max.logdens= -1037.920043 fn= 308 theta= -0.094983 5.809060 range=[-2.420 4.939]
config 202=[ -0.75 -7.50] log(rel.dens)=-4.01, [3] accept, compute, 12.25s
config 203=[ -0.75 7.50] log(rel.dens)= 0.70, [1] accept, compute, 12.14s
config 204=[ 0.75 -7.50] log(rel.dens)=-3.95, [2] accept, compute, 12.09s
max.logdens= -1037.848098 fn= 310 theta= -0.017191 5.812371 range=[-2.411 4.888]
config 205=[ 0.75 7.50] log(rel.dens)= 2.18, [0] accept, compute, 11.49s
config 206=[ 1.50 -7.50] log(rel.dens)=-4.41, [3] accept, compute, 11.27s
config 207=[ 1.50 7.50] log(rel.dens)= 2.25, [1] accept, compute, 11.31s
config 208=[ -1.50 -7.50] log(rel.dens)=-4.58, [2] accept, compute, 11.47s
config 209=[ -1.50 7.50] log(rel.dens)=-0.55, [0] accept, compute, 10.94s
config 210=[ 3.75 6.75] log(rel.dens)=-0.02, [3] accept, compute, 10.86s
config 211=[ -2.25 7.50] log(rel.dens)=-2.39, [1] accept, compute, 10.77s
config 212=[ 2.25 -7.50] log(rel.dens)=-5.17, [2] accept, compute, 10.78s
config 213=[ 3.00 -7.50] log(rel.dens)=-6.24, reject, 0.24s
config 214=[ 2.25 7.50] log(rel.dens)= 1.93, [0] accept, compute, 10.61s
config 215=[ -2.25 -7.50] log(rel.dens)=-5.59, [3] accept, compute, 10.59s
config 216=[ -3.00 7.50] log(rel.dens)=-4.81, [1] accept, compute, 10.54s
config 217=[ 3.00 7.50] log(rel.dens)= 1.29, [2] accept, compute, 10.85s
config 218=[ 4.50 6.75] log(rel.dens)=-1.34, [0] accept, compute, 11.93s
max.logdens= -1037.787553 fn= 325 theta= -0.103899 6.018535 range=[-2.421 4.945]
config 219=[ 0.00 -8.25] log(rel.dens)=-4.46, [3] accept, compute, 12.31s
config 220=[ 0.00 8.25] log(rel.dens)= 1.79, [1] accept, compute, 12.33s
config 221=[ 0.75 -8.25] log(rel.dens)=-4.59, [2] accept, compute, 11.81s
max.logdens= -1037.658503 fn= 328 theta= -0.026107 6.021846 range=[-2.412 4.894]
config 222=[ 0.75 8.25] log(rel.dens)= 2.31, [0] accept, compute, 11.53s
config 223=[ -0.75 -8.25] log(rel.dens)=-4.68, [1] accept, compute, 11.88s
config 224=[ -0.75 8.25] log(rel.dens)= 0.84, [3] accept, compute, 11.95s
config 225=[ 1.50 8.25] log(rel.dens)= 2.44, [2] accept, compute, 12.66s
config 226=[ -1.50 -8.25] log(rel.dens)=-5.26, [0] accept, compute, 20.07s
config 227=[ 1.50 -8.25] log(rel.dens)=-5.04, [3] accept, compute, 20.08s
config 228=[ 3.75 7.50] log(rel.dens)= 0.29, [1] accept, compute, 20.15s
config 229=[ -2.25 -8.25] log(rel.dens)=-6.27, reject, 0.34s
config 230=[ -1.50 8.25] log(rel.dens)=-0.56, [2] accept, compute, 19.22s
config 231=[ 2.25 8.25] log(rel.dens)= 2.17, [0] accept, compute, 16.68s
config 232=[ -2.25 8.25] log(rel.dens)=-2.49, [3] accept, compute, 15.10s
config 233=[ 2.25 -8.25] log(rel.dens)=-5.76, [1] accept, compute, 15.33s
config 234=[ 4.50 7.50] log(rel.dens)=-1.04, [2] accept, compute, 16.16s
config 235=[ 3.00 8.25] log(rel.dens)= 1.49, [0] accept, compute, 18.18s
max.logdens= -1037.648023 fn= 342 theta= -0.112815 6.228010 range=[-2.422 4.950]
config 236=[ -3.00 8.25] log(rel.dens)=-4.93, [3] accept, compute, 18.49s
config 237=[ 0.00 -9.00] log(rel.dens)=-5.23, [1] accept, compute, 17.96s
config 238=[ 0.00 9.00] log(rel.dens)= 1.85, [2] accept, compute, 17.71s
config 239=[ 0.75 9.00] log(rel.dens)= 2.45, [0] accept, compute, 14.16s
config 240=[ -0.75 9.00] log(rel.dens)= 0.87, [1] accept, compute, 14.35s
config 241=[ -0.75 -9.00] log(rel.dens)=-5.48, [3] accept, compute, 14.62s
config 242=[ 0.75 -9.00] log(rel.dens)=-5.33, [2] accept, compute, 14.06s
config 243=[ -1.50 -9.00] log(rel.dens)=-6.14, reject, 0.49s
max.logdens= -1037.487018 fn= 350 theta= -0.035023 6.231321 range=[-2.413 4.900]
config 244=[ 3.75 8.25] log(rel.dens)= 0.60, [0] accept, compute, 18.93s
config 245=[ -1.50 9.00] log(rel.dens)=-0.69, [1] accept, compute, 19.44s
config 246=[ 1.50 -9.00] log(rel.dens)=-5.78, [2] accept, compute, 19.55s
config 247=[ 2.25 -9.00] log(rel.dens)=-6.45, reject, 0.30s
config 248=[ 1.50 9.00] log(rel.dens)= 2.61, [3] accept, compute, 19.56s
config 249=[ -2.25 9.00] log(rel.dens)=-2.63, [0] accept, compute, 16.03s
config 250=[ 2.25 9.00] log(rel.dens)= 2.38, [1] accept, compute, 17.37s
config 251=[ -3.00 9.00] log(rel.dens)=-4.96, [3] accept, compute, 17.52s
config 252=[ 4.50 8.25] log(rel.dens)=-0.65, [2] accept, compute, 17.70s
config 253=[ 0.00 -9.75] log(rel.dens)=-6.16, reject, 0.60s
config 254=[ 3.00 9.00] log(rel.dens)= 1.77, [0] accept, compute, 14.87s
config 255=[ 0.00 9.75] log(rel.dens)= 1.94, [1] accept, compute, 14.92s
config 256=[ 3.75 9.00] log(rel.dens)= 0.83, [2] accept, compute, 14.45s
max.logdens= -1037.329512 fn= 363 theta= -0.043939 6.440796 range=[-2.414 4.906]
config 257=[ -0.75 9.75] log(rel.dens)= 0.89, [3] accept, compute, 14.59s
config 258=[ 0.75 9.75] log(rel.dens)= 2.56, [0] accept, compute, 17.77s
config 259=[ -1.50 9.75] log(rel.dens)=-0.62, [1] accept, compute, 15.65s
config 260=[ 1.50 9.75] log(rel.dens)= 2.77, [2] accept, compute, 15.40s
config 261=[ 2.25 9.75] log(rel.dens)= 2.58, [3] accept, compute, 15.39s
config 262=[ -2.25 9.75] log(rel.dens)=-2.61, [0] accept, compute, 14.09s
config 263=[ 4.50 9.00] log(rel.dens)=-0.39, [1] accept, compute, 14.38s
config 264=[ 3.00 9.75] log(rel.dens)= 2.05, [2] accept, compute, 14.72s
config 265=[ -3.00 9.75] log(rel.dens)=-5.15, [3] accept, compute, 15.67s
config 266=[ 3.75 9.75] log(rel.dens)= 1.10, [0] accept, compute, 14.68s
config 267=[ 0.00 10.50] log(rel.dens)= 1.96, [1] accept, compute, 14.20s
max.logdens= -1037.191621 fn= 374 theta= -0.052855 6.650271 range=[-2.415 4.912]
config 268=[ -0.75 10.50] log(rel.dens)= 0.87, [2] accept, compute, 14.29s
config 269=[ 0.75 10.50] log(rel.dens)= 2.64, [3] accept, compute, 13.70s
config 270=[ -1.50 10.50] log(rel.dens)=-0.74, [0] accept, compute, 10.99s
config 271=[ 1.50 10.50] log(rel.dens)= 2.91, [1] accept, compute, 11.19s
config 272=[ 4.50 9.75] log(rel.dens)=-0.06, [2] accept, compute, 10.96s
config 273=[ 2.25 10.50] log(rel.dens)= 2.77, [3] accept, compute, 10.83s
config 274=[ -2.25 10.50] log(rel.dens)=-2.84, [0] accept, compute, 10.35s
config 275=[ -3.00 10.50] log(rel.dens)=-5.29, [1] accept, compute, 10.54s
config 276=[ 3.00 10.50] log(rel.dens)= 2.26, [2] accept, compute, 10.52s
config 277=[ 3.75 10.50] log(rel.dens)= 1.42, [3] accept, compute, 10.51s
max.logdens= -1037.078891 fn= 384 theta= -0.061771 6.859746 range=[-2.416 4.918]
config 278=[ 0.00 11.25] log(rel.dens)= 2.01, [0] accept, compute, 10.66s
config 279=[ -0.75 11.25] log(rel.dens)= 0.85, [1] accept, compute, 10.52s
config 280=[ 0.75 11.25] log(rel.dens)= 2.72, [2] accept, compute, 10.68s
config 281=[ 1.50 11.25] log(rel.dens)= 3.02, [3] accept, compute, 10.84s
config 282=[ -1.50 11.25] log(rel.dens)=-0.76, [0] accept, compute, 11.09s
config 283=[ 4.50 10.50] log(rel.dens)= 0.23, [1] accept, compute, 11.20s
config 284=[ -2.25 11.25] log(rel.dens)=-2.86, [2] accept, compute, 11.36s
config 285=[ 2.25 11.25] log(rel.dens)= 2.85, [3] accept, compute, 10.96s
config 286=[ -3.00 11.25] log(rel.dens)=-5.43, [0] accept, compute, 12.31s
config 287=[ 3.00 11.25] log(rel.dens)= 2.46, [1] accept, compute, 12.72s
config 288=[ 3.75 11.25] log(rel.dens)= 1.59, [2] accept, compute, 13.15s
config 289=[ 0.00 12.00] log(rel.dens)= 2.00, [3] accept, compute, 13.36s
max.logdens= -1036.990328 fn= 396 theta= -0.070687 7.069221 range=[-2.417 4.924]
config 290=[ -0.75 12.00] log(rel.dens)= 0.79, [0] accept, compute, 17.70s
config 291=[ 0.75 12.00] log(rel.dens)= 2.76, [1] accept, compute, 16.86s
config 292=[ -1.50 12.00] log(rel.dens)=-0.94, [2] accept, compute, 16.96s
config 293=[ 1.50 12.00] log(rel.dens)= 3.11, [3] accept, compute, 16.36s
config 294=[ 4.50 11.25] log(rel.dens)= 0.50, [0] accept, compute, 12.04s
config 295=[ -2.25 12.00] log(rel.dens)=-3.03, [1] accept, compute, 12.07s
config 296=[ 2.25 12.00] log(rel.dens)= 3.04, [2] accept, compute, 12.15s
config 297=[ 3.00 12.00] log(rel.dens)= 2.63, [3] accept, compute, 12.34s
config 298=[ -3.00 12.00] log(rel.dens)=-5.66, [0] accept, compute, 11.05s
config 299=[ 3.75 12.00] log(rel.dens)= 1.79, [1] accept, compute, 11.15s
config 300=[ 0.00 12.75] log(rel.dens)= 1.96, [2] accept, compute, 10.95s
config 301=[ 0.75 12.75] log(rel.dens)= 2.77, [3] accept, compute, 10.68s
config 302=[ -0.75 12.75] log(rel.dens)= 0.70, [0] accept, compute, 10.76s
config 303=[ 4.50 12.00] log(rel.dens)= 0.72, [1] accept, compute, 10.73s
max.logdens= -1036.944131 fn= 410 theta= -0.001811 7.282007 range=[-2.409 4.878]
config 304=[ 1.50 12.75] log(rel.dens)= 3.08, [3] accept, compute, 10.85s
config 305=[ -1.50 12.75] log(rel.dens)=-1.02, [2] accept, compute, 10.98s
config 306=[ -2.25 12.75] log(rel.dens)=-3.22, [0] accept, compute, 11.06s
config 307=[ 2.25 12.75] log(rel.dens)= 3.15, [1] accept, compute, 11.16s
config 308=[ 3.00 12.75] log(rel.dens)= 2.77, [3] accept, compute, 10.96s
config 309=[ -3.00 12.75] log(rel.dens)=-5.91, [2] accept, compute, 11.07s
config 310=[ 3.75 12.75] log(rel.dens)= 1.97, [0] accept, compute, 11.01s
config 311=[ 0.00 13.50] log(rel.dens)= 1.88, [1] accept, compute, 11.00s
max.logdens= -1036.916183 fn= 418 theta= -0.088519 7.488171 range=[-2.419 4.935]
config 312=[ 4.50 12.75] log(rel.dens)= 0.99, [3] accept, compute, 11.02s
config 313=[ 0.75 13.50] log(rel.dens)= 2.73, [2] accept, compute, 11.01s
config 314=[ -0.75 13.50] log(rel.dens)= 0.54, [0] accept, compute, 10.70s
max.logdens= -1036.885880 fn= 421 theta= -0.010727 7.491482 range=[-2.410 4.884]
config 315=[ 1.50 13.50] log(rel.dens)= 3.18, [1] accept, compute, 10.86s
config 316=[ -3.00 13.50] log(rel.dens)=-6.26, reject, 0.35s
config 317=[ -1.50 13.50] log(rel.dens)=-1.32, [3] accept, compute, 10.51s
config 318=[ -2.25 13.50] log(rel.dens)=-3.46, [2] accept, compute, 10.85s
config 319=[ 2.25 13.50] log(rel.dens)= 3.21, [0] accept, compute, 11.12s
config 320=[ 3.00 13.50] log(rel.dens)= 2.79, [1] accept, compute, 10.99s
config 321=[ 3.75 13.50] log(rel.dens)= 2.14, [3] accept, compute, 10.98s
config 322=[ 4.50 13.50] log(rel.dens)= 1.06, [2] accept, compute, 11.00s
config 323=[ 0.00 14.25] log(rel.dens)= 1.76, [0] accept, compute, 11.09s
config 324=[ -0.75 14.25] log(rel.dens)= 0.38, [1] accept, compute, 11.03s
max.logdens= -1036.868563 fn= 431 theta= -0.019643 7.700957 range=[-2.411 4.890]
config 325=[ 0.75 14.25] log(rel.dens)= 2.67, [3] accept, compute, 11.01s
config 326=[ -1.50 14.25] log(rel.dens)=-1.55, [2] accept, compute, 11.02s
config 327=[ 1.50 14.25] log(rel.dens)= 3.15, [0] accept, compute, 11.11s
config 328=[ 2.25 14.25] log(rel.dens)= 3.23, [1] accept, compute, 11.27s
config 329=[ -2.25 14.25] log(rel.dens)=-3.75, [3] accept, compute, 11.20s
config 330=[ 3.00 14.25] log(rel.dens)= 2.91, [2] accept, compute, 11.39s
config 331=[ 3.75 14.25] log(rel.dens)= 2.28, [0] accept, compute, 12.69s
config 332=[ 4.50 14.25] log(rel.dens)= 1.29, [1] accept, compute, 14.10s
config 333=[ 0.00 15.00] log(rel.dens)= 1.58, [3] accept, compute, 13.91s
config 334=[ 0.75 15.00] log(rel.dens)= 2.54, [2] accept, compute, 14.34s
config 335=[ -0.75 15.00] log(rel.dens)= 0.13, [0] accept, compute, 17.09s
config 336=[ 1.50 15.00] log(rel.dens)= 3.07, [1] accept, compute, 15.76s
config 337=[ -1.50 15.00] log(rel.dens)=-1.71, [3] accept, compute, 15.48s
config 338=[ -2.25 15.00] log(rel.dens)=-4.09, [2] accept, compute, 15.23s
config 339=[ 2.25 15.00] log(rel.dens)= 3.19, [0] accept, compute, 10.86s
config 340=[ 3.75 15.00] log(rel.dens)= 2.28, [3] accept, compute, 10.62s
config 341=[ 3.00 15.00] log(rel.dens)= 2.94, [1] accept, compute, 10.84s
config 342=[ 4.50 15.00] log(rel.dens)= 1.27, [2] accept, compute, 10.93s
config 343=[ 0.00 15.75] log(rel.dens)= 1.34, [0] accept, compute, 11.83s
config 344=[ -0.75 15.75] log(rel.dens)=-0.16, [3] accept, compute, 11.81s
config 345=[ 0.75 15.75] log(rel.dens)= 2.35, [1] accept, compute, 11.73s
config 346=[ -1.50 15.75] log(rel.dens)=-2.18, [2] accept, compute, 11.84s
config 347=[ 1.50 15.75] log(rel.dens)= 2.93, [0] accept, compute, 10.71s
config 348=[ -2.25 15.75] log(rel.dens)=-4.49, [1] accept, compute, 10.67s
config 349=[ 2.25 15.75] log(rel.dens)= 3.09, [3] accept, compute, 10.98s
config 350=[ 3.00 15.75] log(rel.dens)= 2.85, [2] accept, compute, 10.82s
config 351=[ 3.75 15.75] log(rel.dens)= 2.30, [0] accept, compute, 11.46s
config 352=[ 4.50 15.75] log(rel.dens)= 1.28, [1] accept, compute, 11.37s
config 353=[ 0.00 16.50] log(rel.dens)= 1.02, [3] accept, compute, 11.54s
config 354=[ 0.75 16.50] log(rel.dens)= 2.08, [2] accept, compute, 11.50s
config 355=[ -0.75 16.50] log(rel.dens)=-0.53, [0] accept, compute, 10.82s
config 356=[ 1.50 16.50] log(rel.dens)= 2.70, [1] accept, compute, 10.74s
config 357=[ -1.50 16.50] log(rel.dens)=-2.49, [3] accept, compute, 10.73s
config 358=[ -2.25 16.50] log(rel.dens)=-4.97, [2] accept, compute, 10.81s
config 359=[ 2.25 16.50] log(rel.dens)= 2.91, [0] accept, compute, 10.75s
config 360=[ 3.00 16.50] log(rel.dens)= 2.74, [1] accept, compute, 10.80s
config 361=[ 3.75 16.50] log(rel.dens)= 2.16, [3] accept, compute, 10.83s
config 362=[ 4.50 16.50] log(rel.dens)= 1.21, [2] accept, compute, 10.87s
config 363=[ 0.00 17.25] log(rel.dens)= 0.60, [0] accept, compute, 10.96s
config 364=[ -0.75 17.25] log(rel.dens)=-0.99, [1] accept, compute, 11.23s
config 365=[ 0.75 17.25] log(rel.dens)= 1.70, [3] accept, compute, 11.07s
config 366=[ 1.50 17.25] log(rel.dens)= 2.38, [2] accept, compute, 11.04s
config 367=[ -1.50 17.25] log(rel.dens)=-3.01, [0] accept, compute, 11.01s
config 368=[ 2.25 17.25] log(rel.dens)= 2.63, [1] accept, compute, 11.18s
config 369=[ -2.25 17.25] log(rel.dens)=-5.55, [3] accept, compute, 11.04s
config 370=[ 3.00 17.25] log(rel.dens)= 2.50, [2] accept, compute, 11.60s
config 371=[ 3.75 17.25] log(rel.dens)= 1.96, [0] accept, compute, 14.47s
config 372=[ 4.50 17.25] log(rel.dens)= 1.16, [1] accept, compute, 14.39s
config 373=[ 0.00 18.00] log(rel.dens)= 0.06, [3] accept, compute, 14.65s
config 374=[ 0.75 18.00] log(rel.dens)= 1.22, [2] accept, compute, 14.05s
config 375=[ -0.75 18.00] log(rel.dens)=-1.59, [0] accept, compute, 11.15s
config 376=[ -2.25 18.00] log(rel.dens)=-6.24, reject, 0.31s
config 377=[ -1.50 18.00] log(rel.dens)=-3.78, [1] accept, compute, 10.98s
config 378=[ 1.50 18.00] log(rel.dens)= 1.94, [3] accept, compute, 11.05s
config 379=[ 2.25 18.00] log(rel.dens)= 2.24, [2] accept, compute, 11.09s
config 380=[ 3.00 18.00] log(rel.dens)= 2.10, [0] accept, compute, 12.80s
config 381=[ 3.75 18.00] log(rel.dens)= 1.64, [1] accept, compute, 12.74s
config 382=[ 4.50 18.00] log(rel.dens)= 0.88, [3] accept, compute, 13.09s
config 383=[ 0.00 18.75] log(rel.dens)=-0.62, [2] accept, compute, 13.13s
config 384=[ -0.75 18.75] log(rel.dens)=-2.31, [0] accept, compute, 12.60s
config 385=[ 0.75 18.75] log(rel.dens)= 0.59, [1] accept, compute, 12.98s
config 386=[ -1.50 18.75] log(rel.dens)=-4.57, [3] accept, compute, 13.06s
config 387=[ 1.50 18.75] log(rel.dens)= 1.36, [2] accept, compute, 13.42s
config 388=[ 2.25 18.75] log(rel.dens)= 1.70, [0] accept, compute, 13.31s
config 389=[ 3.00 18.75] log(rel.dens)= 1.65, [1] accept, compute, 12.86s
config 390=[ 3.75 18.75] log(rel.dens)= 1.18, [3] accept, compute, 13.01s
config 391=[ 4.50 18.75] log(rel.dens)= 0.45, [2] accept, compute, 12.97s
config 392=[ 0.00 19.50] log(rel.dens)=-1.47, [0] accept, compute, 12.77s
config 393=[ -0.75 19.50] log(rel.dens)=-3.21, [1] accept, compute, 12.63s
config 394=[ 0.75 19.50] log(rel.dens)=-0.22, [3] accept, compute, 13.20s
config 395=[ -1.50 19.50] log(rel.dens)=-5.53, [2] accept, compute, 13.22s
config 396=[ 1.50 19.50] log(rel.dens)= 0.60, [0] accept, compute, 14.74s
config 397=[ 2.25 19.50] log(rel.dens)= 0.98, [1] accept, compute, 14.42s
config 398=[ 3.00 19.50] log(rel.dens)= 0.98, [3] accept, compute, 14.60s
config 399=[ 3.75 19.50] log(rel.dens)= 0.55, [2] accept, compute, 14.23s
config 400=[ 4.50 19.50] log(rel.dens)=-0.15, [0] accept, compute, 13.32s
config 401=[ 0.00 20.25] log(rel.dens)=-2.54, [1] accept, compute, 13.16s
config 402=[ -1.50 20.25] log(rel.dens)=-6.57, reject, 0.42s
config 403=[ -0.75 20.25] log(rel.dens)=-4.33, [3] accept, compute, 14.04s
config 404=[ 0.75 20.25] log(rel.dens)=-1.24, [2] accept, compute, 14.19s
config 405=[ 1.50 20.25] log(rel.dens)=-0.38, [0] accept, compute, 15.40s
config 406=[ 2.25 20.25] log(rel.dens)= 0.04, [1] accept, compute, 15.35s
config 407=[ 3.00 20.25] log(rel.dens)= 0.07, [3] accept, compute, 15.77s
config 408=[ 3.75 20.25] log(rel.dens)=-0.27, [2] accept, compute, 15.63s
config 409=[ 4.50 20.25] log(rel.dens)=-0.96, [0] accept, compute, 12.95s
config 410=[ 0.00 21.00] log(rel.dens)=-3.88, [1] accept, compute, 12.55s
config 411=[ 0.75 21.00] log(rel.dens)=-2.52, [3] accept, compute, 12.07s
config 412=[ -0.75 21.00] log(rel.dens)=-5.74, [2] accept, compute, 12.17s
config 413=[ 1.50 21.00] log(rel.dens)=-1.62, [0] accept, compute, 12.47s
config 414=[ 2.25 21.00] log(rel.dens)=-1.14, [1] accept, compute, 12.64s
config 415=[ 3.00 21.00] log(rel.dens)=-1.07, [3] accept, compute, 12.24s
config 416=[ -0.75 21.75] log(rel.dens)=-7.42, reject, 0.41s
config 417=[ 3.75 21.00] log(rel.dens)=-1.41, [2] accept, compute, 12.13s
config 418=[ 4.50 21.00] log(rel.dens)=-2.05, [0] accept, compute, 11.65s
config 419=[ 0.00 21.75] log(rel.dens)=-5.53, [1] accept, compute, 12.02s
config 420=[ 0.75 21.75] log(rel.dens)=-4.13, [3] accept, compute, 12.02s
config 421=[ 1.50 21.75] log(rel.dens)=-3.18, [2] accept, compute, 12.22s
config 422=[ 2.25 21.75] log(rel.dens)=-2.67, [0] accept, compute, 11.27s
config 423=[ 0.00 22.50] log(rel.dens)=-7.59, reject, 0.36s
config 424=[ 3.00 21.75] log(rel.dens)=-2.56, [1] accept, compute, 11.14s
config 425=[ 3.75 21.75] log(rel.dens)=-2.83, [3] accept, compute, 10.06s
config 426=[ 4.50 21.75] log(rel.dens)=-3.46, [2] accept, compute, 9.63s
Combine the densities with relative weights:
config 0/412=[ -0.75 0.00] weight = 0.024 adjusted weight = 0.000 neff = 443.05
config 1/412=[ 0.00 -0.75] weight = 0.031 adjusted weight = 0.001 neff = 417.61
config 2/412=[ 0.75 0.00] weight = 0.041 adjusted weight = 0.001 neff = 396.91
config 3/412=[ 0.00 0.00] weight = 0.040 adjusted weight = 0.001 neff = 419.58
config 4/412=[ -0.75 0.75] weight = 0.027 adjusted weight = 0.001 neff = 445.38
config 5/412=[ 0.00 0.75] weight = 0.047 adjusted weight = 0.001 neff = 421.79
config 6/412=[ -0.75 -0.75] weight = 0.021 adjusted weight = 0.000 neff = 440.89
config 7/412=[ 0.75 -0.75] weight = 0.029 adjusted weight = 0.001 neff = 395.19
config 8/412=[ 0.75 0.75] weight = 0.054 adjusted weight = 0.001 neff = 398.91
config 9/412=[ 0.00 -1.50] weight = 0.023 adjusted weight = 0.000 neff = 415.79
config 10/412=[ -1.50 0.00] weight = 0.010 adjusted weight = 0.000 neff = 467.23
config 11/412=[ 1.50 0.00] weight = 0.028 adjusted weight = 0.001 neff = 375.12
config 12/412=[ -0.75 1.50] weight = 0.031 adjusted weight = 0.001 neff = 447.77
config 13/412=[ 0.00 1.50] weight = 0.056 adjusted weight = 0.001 neff = 424.05
config 14/412=[ 0.75 -1.50] weight = 0.023 adjusted weight = 0.000 neff = 393.35
config 15/412=[ -0.75 -1.50] weight = 0.016 adjusted weight = 0.000 neff = 438.96
config 16/412=[ -1.50 -0.75] weight = 0.009 adjusted weight = 0.000 neff = 464.87
config 17/412=[ 0.75 1.50] weight = 0.070 adjusted weight = 0.001 neff = 401.02
config 18/412=[ 1.50 -0.75] weight = 0.021 adjusted weight = 0.000 neff = 373.37
config 19/412=[ -1.50 0.75] weight = 0.011 adjusted weight = 0.000 neff = 469.61
config 20/412=[ 1.50 0.75] weight = 0.040 adjusted weight = 0.001 neff = 376.92
config 21/412=[ -1.50 -1.50] weight = 0.008 adjusted weight = 0.000 neff = 462.82
config 22/412=[ 1.50 1.50] weight = 0.054 adjusted weight = 0.001 neff = 378.94
config 23/412=[ 1.50 -1.50] weight = 0.016 adjusted weight = 0.000 neff = 371.71
config 24/412=[ -1.50 1.50] weight = 0.014 adjusted weight = 0.000 neff = 471.77
config 25/412=[ 2.25 0.00] weight = 0.014 adjusted weight = 0.000 neff = 354.11
config 26/412=[ 0.00 -2.25] weight = 0.018 adjusted weight = 0.000 neff = 414.13
config 27/412=[ -2.25 0.00] weight = 0.003 adjusted weight = 0.000 neff = 491.77
config 28/412=[ 0.00 2.25] weight = 0.076 adjusted weight = 0.001 neff = 426.21
config 29/412=[ -0.75 -2.25] weight = 0.012 adjusted weight = 0.000 neff = 437.32
config 30/412=[ 2.25 0.75] weight = 0.021 adjusted weight = 0.000 neff = 355.75
config 31/412=[ 0.75 -2.25] weight = 0.017 adjusted weight = 0.000 neff = 391.84
config 32/412=[ -2.25 -0.75] weight = 0.003 adjusted weight = 0.000 neff = 489.46
config 33/412=[ 2.25 -0.75] weight = 0.011 adjusted weight = 0.000 neff = 352.35
config 34/412=[ -0.75 2.25] weight = 0.043 adjusted weight = 0.001 neff = 449.91
config 35/412=[ -2.25 0.75] weight = 0.003 adjusted weight = 0.000 neff = 494.15
config 36/412=[ -2.25 -1.50] weight = 0.002 adjusted weight = 0.000 neff = 487.36
config 37/412=[ 0.75 2.25] weight = 0.089 adjusted weight = 0.002 neff = 403.24
config 38/412=[ 2.25 -1.50] weight = 0.007 adjusted weight = 0.000 neff = 350.89
config 39/412=[ -1.50 -2.25] weight = 0.006 adjusted weight = 0.000 neff = 460.95
config 40/412=[ 2.25 1.50] weight = 0.029 adjusted weight = 0.001 neff = 357.66
config 41/412=[ 1.50 -2.25] weight = 0.010 adjusted weight = 0.000 neff = 370.39
config 42/412=[ -1.50 2.25] weight = 0.016 adjusted weight = 0.000 neff = 474.26
config 43/412=[ -2.25 1.50] weight = 0.003 adjusted weight = 0.000 neff = 496.62
config 44/412=[ 1.50 2.25] weight = 0.066 adjusted weight = 0.001 neff = 381.15
config 45/412=[ 0.00 3.00] weight = 0.091 adjusted weight = 0.002 neff = 428.59
config 46/412=[ 3.00 0.00] weight = 0.006 adjusted weight = 0.000 neff = 333.79
config 47/412=[ 0.00 -3.00] weight = 0.013 adjusted weight = 0.000 neff = 412.71
config 48/412=[ -3.00 0.00] weight = 0.000 adjusted weight = 0.000 neff = 517.01
config 49/412=[ -0.75 -3.00] weight = 0.009 adjusted weight = 0.000 neff = 435.71
config 50/412=[ -3.00 0.75] weight = 0.000 adjusted weight = 0.000 neff = 519.59
config 51/412=[ 3.00 0.75] weight = 0.008 adjusted weight = 0.000 neff = 335.42
config 52/412=[ -0.75 3.00] weight = 0.049 adjusted weight = 0.001 neff = 452.38
config 53/412=[ 0.75 -3.00] weight = 0.012 adjusted weight = 0.000 neff = 390.53
config 54/412=[ 0.75 3.00] weight = 0.111 adjusted weight = 0.002 neff = 405.53
config 55/412=[ 3.00 -0.75] weight = 0.004 adjusted weight = 0.000 neff = 332.26
config 56/412=[ -3.00 -0.75] weight = 0.000 adjusted weight = 0.000 neff = 514.60
config 57/412=[ 2.25 2.25] weight = 0.035 adjusted weight = 0.001 neff = 359.87
config 58/412=[ 2.25 -2.25] weight = 0.005 adjusted weight = 0.000 neff = 349.62
config 59/412=[ -2.25 -2.25] weight = 0.002 adjusted weight = 0.000 neff = 485.40
config 60/412=[ -2.25 2.25] weight = 0.004 adjusted weight = 0.000 neff = 499.27
config 61/412=[ -1.50 3.00] weight = 0.017 adjusted weight = 0.000 neff = 476.84
config 62/412=[ -3.00 -1.50] weight = 0.000 adjusted weight = 0.000 neff = 512.45
config 63/412=[ 1.50 -3.00] weight = 0.008 adjusted weight = 0.000 neff = 369.17
config 64/412=[ 3.00 1.50] weight = 0.011 adjusted weight = 0.000 neff = 337.25
config 65/412=[ 1.50 3.00] weight = 0.093 adjusted weight = 0.002 neff = 383.22
config 66/412=[ -3.00 1.50] weight = 0.001 adjusted weight = 0.000 neff = 522.04
config 67/412=[ -1.50 -3.00] weight = 0.005 adjusted weight = 0.000 neff = 459.28
config 68/412=[ 3.00 -1.50] weight = 0.003 adjusted weight = 0.000 neff = 330.94
config 69/412=[ -2.25 -3.00] weight = 0.002 adjusted weight = 0.000 neff = 483.55
config 70/412=[ 2.25 -3.00] weight = 0.003 adjusted weight = 0.000 neff = 348.68
config 71/412=[ 0.00 -3.75] weight = 0.009 adjusted weight = 0.000 neff = 411.54
config 72/412=[ -3.00 2.25] weight = 0.000 adjusted weight = 0.000 neff = 524.83
config 73/412=[ 3.00 -2.25] weight = 0.002 adjusted weight = 0.000 neff = 329.83
config 74/412=[ 3.00 2.25] weight = 0.016 adjusted weight = 0.000 neff = 339.14
config 75/412=[ -3.00 -2.25] weight = 0.000 adjusted weight = 0.000 neff = 510.28
config 76/412=[ 2.25 3.00] weight = 0.053 adjusted weight = 0.001 neff = 361.77
config 77/412=[ 0.00 3.75] weight = 0.108 adjusted weight = 0.002 neff = 431.05
config 78/412=[ -2.25 3.00] weight = 0.004 adjusted weight = 0.000 neff = 501.92
config 79/412=[ 3.75 0.00] weight = 0.001 adjusted weight = 0.000 neff = 314.53
config 80/412=[ -0.75 3.75] weight = 0.056 adjusted weight = 0.001 neff = 454.92
config 81/412=[ 0.75 -3.75] weight = 0.008 adjusted weight = 0.000 neff = 389.50
config 82/412=[ 3.75 0.75] weight = 0.002 adjusted weight = 0.000 neff = 316.05
config 83/412=[ 3.75 -0.75] weight = 0.001 adjusted weight = 0.000 neff = 313.03
config 84/412=[ 0.75 3.75] weight = 0.140 adjusted weight = 0.003 neff = 407.87
config 85/412=[ -0.75 -3.75] weight = 0.007 adjusted weight = 0.000 neff = 434.33
config 86/412=[ -1.50 3.75] weight = 0.018 adjusted weight = 0.000 neff = 479.52
config 87/412=[ 3.75 1.50] weight = 0.003 adjusted weight = 0.000 neff = 317.63
config 88/412=[ -1.50 -3.75] weight = 0.004 adjusted weight = 0.000 neff = 457.83
config 89/412=[ 1.50 -3.75] weight = 0.005 adjusted weight = 0.000 neff = 368.27
config 90/412=[ 3.75 -1.50] weight = 0.001 adjusted weight = 0.000 neff = 311.83
config 91/412=[ 1.50 3.75] weight = 0.121 adjusted weight = 0.002 neff = 385.47
config 92/412=[ -3.00 -3.00] weight = 0.000 adjusted weight = 0.000 neff = 508.37
config 93/412=[ 3.00 -3.00] weight = 0.001 adjusted weight = 0.000 neff = 328.90
config 94/412=[ 3.00 3.00] weight = 0.020 adjusted weight = 0.000 neff = 341.26
config 95/412=[ -3.00 3.00] weight = 0.001 adjusted weight = 0.000 neff = 527.39
config 96/412=[ 2.25 -3.75] weight = 0.002 adjusted weight = 0.000 neff = 347.91
config 97/412=[ 2.25 3.75] weight = 0.074 adjusted weight = 0.001 neff = 363.86
config 98/412=[ -2.25 -3.75] weight = 0.001 adjusted weight = 0.000 neff = 482.02
config 99/412=[ 3.75 -2.25] weight = 0.000 adjusted weight = 0.000 neff = 310.99
config 100/412=[ -2.25 3.75] weight = 0.004 adjusted weight = 0.000 neff = 504.57
config 101/412=[ 3.75 2.25] weight = 0.005 adjusted weight = 0.000 neff = 319.39
config 102/412=[ 0.00 4.50] weight = 0.128 adjusted weight = 0.003 neff = 433.55
config 103/412=[ 0.00 -4.50] weight = 0.006 adjusted weight = 0.000 neff = 410.69
config 104/412=[ 4.50 -0.75] weight = 0.000 adjusted weight = 0.000 neff = 294.80
config 105/412=[ 4.50 0.00] weight = 0.000 adjusted weight = 0.000 neff = 296.09
config 106/412=[ 0.75 -4.50] weight = 0.006 adjusted weight = 0.000 neff = 388.79
config 107/412=[ -0.75 4.50] weight = 0.063 adjusted weight = 0.001 neff = 457.51
config 108/412=[ -0.75 -4.50] weight = 0.005 adjusted weight = 0.000 neff = 433.36
config 109/412=[ 0.75 4.50] weight = 0.169 adjusted weight = 0.003 neff = 410.31
config 110/412=[ 4.50 0.75] weight = 0.000 adjusted weight = 0.000 neff = 297.37
config 111/412=[ -1.50 4.50] weight = 0.018 adjusted weight = 0.000 neff = 482.26
config 112/412=[ 4.50 -1.50] weight = 0.000 adjusted weight = 0.000 neff = 293.62
config 113/412=[ -1.50 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 456.67
config 114/412=[ 1.50 4.50] weight = 0.155 adjusted weight = 0.003 neff = 387.79
config 115/412=[ 4.50 1.50] weight = 0.001 adjusted weight = 0.000 neff = 299.01
config 116/412=[ 1.50 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 367.71
config 117/412=[ 3.75 -3.00] weight = 0.000 adjusted weight = 0.000 neff = 310.10
config 118/412=[ -3.00 -3.75] weight = 0.000 adjusted weight = 0.000 neff = 506.71
config 119/412=[ 3.00 3.75] weight = 0.032 adjusted weight = 0.001 neff = 343.10
config 120/412=[ -3.00 3.75] weight = 0.000 adjusted weight = 0.000 neff = 530.19
config 121/412=[ 3.00 -3.75] weight = 0.001 adjusted weight = 0.000 neff = 328.38
config 122/412=[ 3.75 3.00] weight = 0.007 adjusted weight = 0.000 neff = 321.34
config 123/412=[ 2.25 -4.50] weight = 0.002 adjusted weight = 0.000 neff = 347.45
config 124/412=[ -2.25 -4.50] weight = 0.001 adjusted weight = 0.000 neff = 480.67
config 125/412=[ -2.25 4.50] weight = 0.004 adjusted weight = 0.000 neff = 507.40
config 126/412=[ 2.25 4.50] weight = 0.098 adjusted weight = 0.002 neff = 366.08
config 127/412=[ 4.50 2.25] weight = 0.001 adjusted weight = 0.000 neff = 300.58
config 128/412=[ 0.00 5.25] weight = 0.141 adjusted weight = 0.003 neff = 436.18
config 129/412=[ -0.75 -5.25] weight = 0.003 adjusted weight = 0.000 neff = 432.65
config 130/412=[ 0.00 -5.25] weight = 0.004 adjusted weight = 0.000 neff = 410.18
config 131/412=[ 3.75 3.75] weight = 0.009 adjusted weight = 0.000 neff = 323.30
config 132/412=[ -0.75 5.25] weight = 0.063 adjusted weight = 0.001 neff = 460.29
config 133/412=[ 0.75 5.25] weight = 0.183 adjusted weight = 0.004 neff = 412.96
config 134/412=[ 0.75 -5.25] weight = 0.004 adjusted weight = 0.000 neff = 388.45
config 135/412=[ 3.75 -3.75] weight = 0.000 adjusted weight = 0.000 neff = 309.73
config 136/412=[ -3.00 -4.50] weight = 0.000 adjusted weight = 0.000 neff = 505.25
config 137/412=[ -3.00 4.50] weight = 0.000 adjusted weight = 0.000 neff = 532.95
config 138/412=[ 3.00 -4.50] weight = 0.001 adjusted weight = 0.000 neff = 328.04
config 139/412=[ 3.00 4.50] weight = 0.044 adjusted weight = 0.001 neff = 345.21
config 140/412=[ 4.50 3.00] weight = 0.001 adjusted weight = 0.000 neff = 302.46
config 141/412=[ 1.50 5.25] weight = 0.193 adjusted weight = 0.004 neff = 390.19
config 142/412=[ -1.50 5.25] weight = 0.020 adjusted weight = 0.000 neff = 484.90
config 143/412=[ -1.50 -5.25] weight = 0.002 adjusted weight = 0.000 neff = 455.86
config 144/412=[ 1.50 -5.25] weight = 0.002 adjusted weight = 0.000 neff = 367.53
config 145/412=[ 2.25 5.25] weight = 0.121 adjusted weight = 0.002 neff = 368.45
config 146/412=[ -2.25 5.25] weight = 0.004 adjusted weight = 0.000 neff = 510.21
config 147/412=[ -2.25 -5.25] weight = 0.001 adjusted weight = 0.000 neff = 479.84
config 148/412=[ 2.25 -5.25] weight = 0.001 adjusted weight = 0.000 neff = 347.51
config 149/412=[ 4.50 3.75] weight = 0.002 adjusted weight = 0.000 neff = 304.16
config 150/412=[ 3.75 -4.50] weight = 0.000 adjusted weight = 0.000 neff = 309.56
config 151/412=[ 3.75 4.50] weight = 0.013 adjusted weight = 0.000 neff = 325.29
config 152/412=[ 0.00 -6.00] weight = 0.003 adjusted weight = 0.000 neff = 410.09
config 153/412=[ 3.00 5.25] weight = 0.060 adjusted weight = 0.001 neff = 347.37
config 154/412=[ 0.00 6.00] weight = 0.166 adjusted weight = 0.003 neff = 438.73
config 155/412=[ 0.75 -6.00] weight = 0.002 adjusted weight = 0.000 neff = 388.55
config 156/412=[ -3.00 5.25] weight = 0.000 adjusted weight = 0.000 neff = 535.76
config 157/412=[ 3.00 -5.25] weight = 0.000 adjusted weight = 0.000 neff = 328.20
config 158/412=[ -0.75 -6.00] weight = 0.002 adjusted weight = 0.000 neff = 432.41
config 159/412=[ -3.00 -5.25] weight = 0.000 adjusted weight = 0.000 neff = 504.15
config 160/412=[ 0.75 6.00] weight = 0.248 adjusted weight = 0.005 neff = 415.27
config 161/412=[ 1.50 6.00] weight = 0.248 adjusted weight = 0.005 neff = 392.56
config 162/412=[ -0.75 6.00] weight = 0.074 adjusted weight = 0.001 neff = 462.86
config 163/412=[ -1.50 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 455.42
config 164/412=[ -1.50 6.00] weight = 0.022 adjusted weight = 0.000 neff = 487.56
config 165/412=[ 1.50 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 367.80
config 166/412=[ 4.50 4.50] weight = 0.003 adjusted weight = 0.000 neff = 306.11
config 167/412=[ 2.25 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 347.89
config 168/412=[ -2.25 -6.00] weight = 0.000 adjusted weight = 0.000 neff = 479.10
config 169/412=[ -2.25 6.00] weight = 0.004 adjusted weight = 0.000 neff = 512.91
config 170/412=[ 2.25 6.00] weight = 0.168 adjusted weight = 0.003 neff = 370.66
config 171/412=[ 3.75 5.25] weight = 0.020 adjusted weight = 0.000 neff = 327.26
config 172/412=[ 3.00 6.00] weight = 0.078 adjusted weight = 0.002 neff = 349.63
config 173/412=[ -3.00 6.00] weight = 0.000 adjusted weight = 0.000 neff = 538.69
config 174/412=[ 3.00 -6.00] weight = 0.000 adjusted weight = 0.000 neff = 328.92
config 175/412=[ 0.00 -6.75] weight = 0.002 adjusted weight = 0.000 neff = 410.53
config 176/412=[ 0.00 6.75] weight = 0.193 adjusted weight = 0.004 neff = 441.32
config 177/412=[ -0.75 6.75] weight = 0.082 adjusted weight = 0.002 neff = 465.52
config 178/412=[ 0.75 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 389.17
config 179/412=[ -0.75 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 432.75
config 180/412=[ 0.75 6.75] weight = 0.274 adjusted weight = 0.005 neff = 417.92
config 181/412=[ 4.50 5.25] weight = 0.005 adjusted weight = 0.000 neff = 308.02
config 182/412=[ -1.50 6.75] weight = 0.020 adjusted weight = 0.000 neff = 490.50
config 183/412=[ 1.50 6.75] weight = 0.307 adjusted weight = 0.006 neff = 395.01
config 184/412=[ 1.50 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 368.62
config 185/412=[ -1.50 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 455.53
config 186/412=[ 3.75 6.00] weight = 0.027 adjusted weight = 0.001 neff = 329.42
config 187/412=[ -2.25 -6.75] weight = 0.000 adjusted weight = 0.000 neff = 478.96
config 188/412=[ -2.25 6.75] weight = 0.004 adjusted weight = 0.000 neff = 515.75
config 189/412=[ 2.25 6.75] weight = 0.216 adjusted weight = 0.004 neff = 373.01
config 190/412=[ 2.25 -6.75] weight = 0.000 adjusted weight = 0.000 neff = 348.89
config 191/412=[ 3.00 6.75] weight = 0.106 adjusted weight = 0.002 neff = 351.86
config 192/412=[ -3.00 6.75] weight = 0.000 adjusted weight = 0.000 neff = 541.67
config 193/412=[ 3.00 -6.75] weight = 0.000 adjusted weight = 0.000 neff = 330.00
config 194/412=[ 0.00 7.50] weight = 0.215 adjusted weight = 0.004 neff = 443.99
config 195/412=[ 4.50 6.00] weight = 0.007 adjusted weight = 0.000 neff = 310.02
config 196/412=[ 0.00 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 411.59
config 197/412=[ -0.75 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 433.47
config 198/412=[ -0.75 7.50] weight = 0.079 adjusted weight = 0.002 neff = 468.40
config 199/412=[ 0.75 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 390.42
config 200/412=[ 0.75 7.50] weight = 0.349 adjusted weight = 0.007 neff = 420.36
config 201/412=[ 1.50 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 370.08
config 202/412=[ 1.50 7.50] weight = 0.375 adjusted weight = 0.007 neff = 397.49
config 203/412=[ -1.50 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 456.07
config 204/412=[ -1.50 7.50] weight = 0.023 adjusted weight = 0.000 neff = 493.14
config 205/412=[ 3.75 6.75] weight = 0.039 adjusted weight = 0.001 neff = 331.51
config 206/412=[ -2.25 7.50] weight = 0.004 adjusted weight = 0.000 neff = 518.57
config 207/412=[ 2.25 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 350.56
config 208/412=[ 2.25 7.50] weight = 0.274 adjusted weight = 0.005 neff = 375.41
config 209/412=[ -2.25 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 479.42
config 210/412=[ -3.00 7.50] weight = 0.000 adjusted weight = 0.000 neff = 544.58
config 211/412=[ 3.00 7.50] weight = 0.143 adjusted weight = 0.003 neff = 354.12
config 212/412=[ 4.50 6.75] weight = 0.010 adjusted weight = 0.000 neff = 312.06
config 213/412=[ 0.00 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 413.30
config 214/412=[ 0.00 8.25] weight = 0.238 adjusted weight = 0.005 neff = 446.66
config 215/412=[ 0.75 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 392.40
config 216/412=[ 0.75 8.25] weight = 0.399 adjusted weight = 0.008 neff = 422.98
config 217/412=[ -0.75 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 434.96
config 218/412=[ -0.75 8.25] weight = 0.092 adjusted weight = 0.002 neff = 471.01
config 219/412=[ 1.50 8.25] weight = 0.454 adjusted weight = 0.009 neff = 400.00
config 220/412=[ -1.50 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 457.34
config 221/412=[ 1.50 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 372.30
config 222/412=[ 3.75 7.50] weight = 0.053 adjusted weight = 0.001 neff = 333.71
config 223/412=[ -1.50 8.25] weight = 0.023 adjusted weight = 0.000 neff = 495.97
config 224/412=[ 2.25 8.25] weight = 0.347 adjusted weight = 0.007 neff = 377.81
config 225/412=[ -2.25 8.25] weight = 0.003 adjusted weight = 0.000 neff = 521.51
config 226/412=[ 2.25 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 353.01
config 227/412=[ 4.50 7.50] weight = 0.014 adjusted weight = 0.000 neff = 314.23
config 228/412=[ 3.00 8.25] weight = 0.176 adjusted weight = 0.003 neff = 356.53
config 229/412=[ -3.00 8.25] weight = 0.000 adjusted weight = 0.000 neff = 547.51
config 230/412=[ 0.00 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 415.88
config 231/412=[ 0.00 9.00] weight = 0.252 adjusted weight = 0.005 neff = 449.40
config 232/412=[ 0.75 9.00] weight = 0.459 adjusted weight = 0.009 neff = 425.58
config 233/412=[ -0.75 9.00] weight = 0.095 adjusted weight = 0.002 neff = 473.79
config 234/412=[ -0.75 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 437.31
config 235/412=[ 0.75 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 395.24
config 236/412=[ 3.75 8.25] weight = 0.072 adjusted weight = 0.001 neff = 335.92
config 237/412=[ -1.50 9.00] weight = 0.020 adjusted weight = 0.000 neff = 498.97
config 238/412=[ 1.50 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 375.47
config 239/412=[ 1.50 9.00] weight = 0.539 adjusted weight = 0.011 neff = 402.53
config 240/412=[ -2.25 9.00] weight = 0.003 adjusted weight = 0.000 neff = 524.49
config 241/412=[ 2.25 9.00] weight = 0.427 adjusted weight = 0.008 neff = 380.27
config 242/412=[ -3.00 9.00] weight = 0.000 adjusted weight = 0.000 neff = 550.32
config 243/412=[ 4.50 8.25] weight = 0.021 adjusted weight = 0.000 neff = 316.25
config 244/412=[ 3.00 9.00] weight = 0.232 adjusted weight = 0.005 neff = 358.84
config 245/412=[ 0.00 9.75] weight = 0.276 adjusted weight = 0.005 neff = 452.08
config 246/412=[ 3.75 9.00] weight = 0.091 adjusted weight = 0.002 neff = 338.25
config 247/412=[ -0.75 9.75] weight = 0.096 adjusted weight = 0.002 neff = 476.59
config 248/412=[ 0.75 9.75] weight = 0.513 adjusted weight = 0.010 neff = 428.23
config 249/412=[ -1.50 9.75] weight = 0.021 adjusted weight = 0.000 neff = 501.66
config 250/412=[ 1.50 9.75] weight = 0.631 adjusted weight = 0.012 neff = 405.09
config 251/412=[ 2.25 9.75] weight = 0.525 adjusted weight = 0.010 neff = 382.72
config 252/412=[ -2.25 9.75] weight = 0.003 adjusted weight = 0.000 neff = 527.25
config 253/412=[ 4.50 9.00] weight = 0.027 adjusted weight = 0.001 neff = 318.48
config 254/412=[ 3.00 9.75] weight = 0.306 adjusted weight = 0.006 neff = 361.14
config 255/412=[ -3.00 9.75] weight = 0.000 adjusted weight = 0.000 neff = 553.33
config 256/412=[ 3.75 9.75] weight = 0.119 adjusted weight = 0.002 neff = 340.52
config 257/412=[ 0.00 10.50] weight = 0.280 adjusted weight = 0.005 neff = 454.86
config 258/412=[ -0.75 10.50] weight = 0.094 adjusted weight = 0.002 neff = 479.42
config 259/412=[ 0.75 10.50] weight = 0.554 adjusted weight = 0.011 neff = 430.91
config 260/412=[ -1.50 10.50] weight = 0.019 adjusted weight = 0.000 neff = 504.63
config 261/412=[ 1.50 10.50] weight = 0.724 adjusted weight = 0.014 neff = 407.66
config 262/412=[ 4.50 9.75] weight = 0.037 adjusted weight = 0.001 neff = 320.61
config 263/412=[ 2.25 10.50] weight = 0.631 adjusted weight = 0.012 neff = 385.19
config 264/412=[ -2.25 10.50] weight = 0.002 adjusted weight = 0.000 neff = 530.36
config 265/412=[ -3.00 10.50] weight = 0.000 adjusted weight = 0.000 neff = 556.24
config 266/412=[ 3.00 10.50] weight = 0.381 adjusted weight = 0.007 neff = 363.53
config 267/412=[ 3.75 10.50] weight = 0.164 adjusted weight = 0.003 neff = 342.71
config 268/412=[ 0.00 11.25] weight = 0.294 adjusted weight = 0.006 neff = 457.58
config 269/412=[ -0.75 11.25] weight = 0.093 adjusted weight = 0.002 neff = 482.22
config 270/412=[ 0.75 11.25] weight = 0.601 adjusted weight = 0.012 neff = 433.57
config 271/412=[ 1.50 11.25] weight = 0.810 adjusted weight = 0.016 neff = 410.25
config 272/412=[ -1.50 11.25] weight = 0.019 adjusted weight = 0.000 neff = 507.43
config 273/412=[ 4.50 10.50] weight = 0.050 adjusted weight = 0.001 neff = 322.80
config 274/412=[ -2.25 11.25] weight = 0.002 adjusted weight = 0.000 neff = 533.11
config 275/412=[ 2.25 11.25] weight = 0.686 adjusted weight = 0.013 neff = 387.81
config 276/412=[ -3.00 11.25] weight = 0.000 adjusted weight = 0.000 neff = 559.16
config 277/412=[ 3.00 11.25] weight = 0.464 adjusted weight = 0.009 neff = 365.94
config 278/412=[ 3.75 11.25] weight = 0.194 adjusted weight = 0.004 neff = 345.12
config 279/412=[ 0.00 12.00] weight = 0.292 adjusted weight = 0.006 neff = 460.35
config 280/412=[ -0.75 12.00] weight = 0.087 adjusted weight = 0.002 neff = 485.06
config 281/412=[ 0.75 12.00] weight = 0.627 adjusted weight = 0.012 neff = 436.26
config 282/412=[ -1.50 12.00] weight = 0.015 adjusted weight = 0.000 neff = 510.42
config 283/412=[ 1.50 12.00] weight = 0.885 adjusted weight = 0.017 neff = 412.86
config 284/412=[ 4.50 11.25] weight = 0.065 adjusted weight = 0.001 neff = 325.00
config 285/412=[ -2.25 12.00] weight = 0.002 adjusted weight = 0.000 neff = 536.06
config 286/412=[ 2.25 12.00] weight = 0.830 adjusted weight = 0.016 neff = 390.23
config 287/412=[ 3.00 12.00] weight = 0.550 adjusted weight = 0.011 neff = 368.36
config 288/412=[ -3.00 12.00] weight = 0.000 adjusted weight = 0.000 neff = 562.14
config 289/412=[ 3.75 12.00] weight = 0.238 adjusted weight = 0.005 neff = 347.45
config 290/412=[ 0.00 12.75] weight = 0.281 adjusted weight = 0.005 neff = 463.13
config 291/412=[ 0.75 12.75] weight = 0.633 adjusted weight = 0.012 neff = 438.97
config 292/412=[ -0.75 12.75] weight = 0.080 adjusted weight = 0.002 neff = 487.91
config 293/412=[ 4.50 12.00] weight = 0.082 adjusted weight = 0.002 neff = 327.26
config 294/412=[ 1.50 12.75] weight = 0.861 adjusted weight = 0.017 neff = 415.61
config 295/412=[ -1.50 12.75] weight = 0.014 adjusted weight = 0.000 neff = 513.23
config 296/412=[ -2.25 12.75] weight = 0.002 adjusted weight = 0.000 neff = 539.01
config 297/412=[ 2.25 12.75] weight = 0.927 adjusted weight = 0.018 neff = 392.75
config 298/412=[ 3.00 12.75] weight = 0.633 adjusted weight = 0.012 neff = 370.80
config 299/412=[ -3.00 12.75] weight = 0.000 adjusted weight = 0.000 neff = 565.14
config 300/412=[ 3.75 12.75] weight = 0.284 adjusted weight = 0.006 neff = 349.79
config 301/412=[ 0.00 13.50] weight = 0.260 adjusted weight = 0.005 neff = 465.93
config 302/412=[ 4.50 12.75] weight = 0.106 adjusted weight = 0.002 neff = 329.42
config 303/412=[ 0.75 13.50] weight = 0.606 adjusted weight = 0.012 neff = 441.71
config 304/412=[ -0.75 13.50] weight = 0.068 adjusted weight = 0.001 neff = 490.82
config 305/412=[ 1.50 13.50] weight = 0.953 adjusted weight = 0.019 neff = 418.12
config 306/412=[ -1.50 13.50] weight = 0.011 adjusted weight = 0.000 neff = 516.31
config 307/412=[ -2.25 13.50] weight = 0.001 adjusted weight = 0.000 neff = 541.99
config 308/412=[ 2.25 13.50] weight = 0.983 adjusted weight = 0.019 neff = 395.30
config 309/412=[ 3.00 13.50] weight = 0.645 adjusted weight = 0.013 neff = 373.39
config 310/412=[ 3.75 13.50] weight = 0.337 adjusted weight = 0.007 neff = 352.10
config 311/412=[ 4.50 13.50] weight = 0.114 adjusted weight = 0.002 neff = 331.84
config 312/412=[ 0.00 14.25] weight = 0.230 adjusted weight = 0.004 neff = 468.73
config 313/412=[ -0.75 14.25] weight = 0.058 adjusted weight = 0.001 neff = 493.67
config 314/412=[ 0.75 14.25] weight = 0.569 adjusted weight = 0.011 neff = 444.42
config 315/412=[ -1.50 14.25] weight = 0.008 adjusted weight = 0.000 neff = 519.24
config 316/412=[ 1.50 14.25] weight = 0.929 adjusted weight = 0.018 neff = 420.77
config 317/412=[ 2.25 14.25] weight = 1.000 adjusted weight = 0.020 neff = 397.87
config 318/412=[ -2.25 14.25] weight = 0.001 adjusted weight = 0.000 neff = 544.96
config 319/412=[ 3.00 14.25] weight = 0.726 adjusted weight = 0.014 neff = 375.77
config 320/412=[ 3.75 14.25] weight = 0.386 adjusted weight = 0.008 neff = 354.42
config 321/412=[ 4.50 14.25] weight = 0.144 adjusted weight = 0.003 neff = 333.95
config 322/412=[ 0.00 15.00] weight = 0.192 adjusted weight = 0.004 neff = 471.55
config 323/412=[ 0.75 15.00] weight = 0.503 adjusted weight = 0.010 neff = 447.16
config 324/412=[ -0.75 15.00] weight = 0.045 adjusted weight = 0.001 neff = 496.58
config 325/412=[ 1.50 15.00] weight = 0.853 adjusted weight = 0.017 neff = 423.44
config 326/412=[ -1.50 15.00] weight = 0.007 adjusted weight = 0.000 neff = 522.02
config 327/412=[ -2.25 15.00] weight = 0.001 adjusted weight = 0.000 neff = 547.94
config 328/412=[ 2.25 15.00] weight = 0.964 adjusted weight = 0.019 neff = 400.44
config 329/412=[ 3.75 15.00] weight = 0.387 adjusted weight = 0.008 neff = 356.87
config 330/412=[ 3.00 15.00] weight = 0.748 adjusted weight = 0.015 neff = 378.21
config 331/412=[ 4.50 15.00] weight = 0.141 adjusted weight = 0.003 neff = 336.41
config 332/412=[ 0.00 15.75] weight = 0.151 adjusted weight = 0.003 neff = 474.38
config 333/412=[ -0.75 15.75] weight = 0.034 adjusted weight = 0.001 neff = 499.47
config 334/412=[ 0.75 15.75] weight = 0.415 adjusted weight = 0.008 neff = 449.91
config 335/412=[ -1.50 15.75] weight = 0.004 adjusted weight = 0.000 neff = 525.13
config 336/412=[ 1.50 15.75] weight = 0.740 adjusted weight = 0.014 neff = 426.11
config 337/412=[ -2.25 15.75] weight = 0.000 adjusted weight = 0.000 neff = 550.92
config 338/412=[ 2.25 15.75] weight = 0.871 adjusted weight = 0.017 neff = 403.03
config 339/412=[ 3.00 15.75] weight = 0.686 adjusted weight = 0.013 neff = 380.75
config 340/412=[ 3.75 15.75] weight = 0.394 adjusted weight = 0.008 neff = 359.21
config 341/412=[ 4.50 15.75] weight = 0.142 adjusted weight = 0.003 neff = 338.72
config 342/412=[ 0.00 16.50] weight = 0.109 adjusted weight = 0.002 neff = 477.21
config 343/412=[ 0.75 16.50] weight = 0.316 adjusted weight = 0.006 neff = 452.68
config 344/412=[ -0.75 16.50] weight = 0.023 adjusted weight = 0.000 neff = 502.37
config 345/412=[ 1.50 16.50] weight = 0.588 adjusted weight = 0.011 neff = 428.80
config 346/412=[ -1.50 16.50] weight = 0.003 adjusted weight = 0.000 neff = 527.91
config 347/412=[ -2.25 16.50] weight = 0.000 adjusted weight = 0.000 neff = 553.91
config 348/412=[ 2.25 16.50] weight = 0.727 adjusted weight = 0.014 neff = 405.63
config 349/412=[ 3.00 16.50] weight = 0.612 adjusted weight = 0.012 neff = 383.22
config 350/412=[ 3.75 16.50] weight = 0.342 adjusted weight = 0.007 neff = 361.69
config 351/412=[ 4.50 16.50] weight = 0.133 adjusted weight = 0.003 neff = 341.04
config 352/412=[ 0.00 17.25] weight = 0.072 adjusted weight = 0.001 neff = 480.06
config 353/412=[ -0.75 17.25] weight = 0.015 adjusted weight = 0.000 neff = 505.25
config 354/412=[ 0.75 17.25] weight = 0.218 adjusted weight = 0.004 neff = 455.46
config 355/412=[ 1.50 17.25] weight = 0.426 adjusted weight = 0.008 neff = 431.50
config 356/412=[ -1.50 17.25] weight = 0.002 adjusted weight = 0.000 neff = 530.86
config 357/412=[ 2.25 17.25] weight = 0.551 adjusted weight = 0.011 neff = 408.24
config 358/412=[ -2.25 17.25] weight = 0.000 adjusted weight = 0.000 neff = 556.91
config 359/412=[ 3.00 17.25] weight = 0.484 adjusted weight = 0.009 neff = 385.74
config 360/412=[ 3.75 17.25] weight = 0.280 adjusted weight = 0.005 neff = 364.11
config 361/412=[ 4.50 17.25] weight = 0.126 adjusted weight = 0.002 neff = 343.19
config 362/412=[ 0.00 18.00] weight = 0.042 adjusted weight = 0.001 neff = 482.91
config 363/412=[ 0.75 18.00] weight = 0.134 adjusted weight = 0.003 neff = 458.24
config 364/412=[ -0.75 18.00] weight = 0.008 adjusted weight = 0.000 neff = 508.19
config 365/412=[ -1.50 18.00] weight = 0.001 adjusted weight = 0.000 neff = 534.00
config 366/412=[ 1.50 18.00] weight = 0.276 adjusted weight = 0.005 neff = 434.20
config 367/412=[ 2.25 18.00] weight = 0.373 adjusted weight = 0.007 neff = 410.86
config 368/412=[ 3.00 18.00] weight = 0.322 adjusted weight = 0.006 neff = 388.36
config 369/412=[ 3.75 18.00] weight = 0.205 adjusted weight = 0.004 neff = 366.56
config 370/412=[ 4.50 18.00] weight = 0.095 adjusted weight = 0.002 neff = 345.54
config 371/412=[ 0.00 18.75] weight = 0.021 adjusted weight = 0.000 neff = 485.77
config 372/412=[ -0.75 18.75] weight = 0.004 adjusted weight = 0.000 neff = 511.08
config 373/412=[ 0.75 18.75] weight = 0.071 adjusted weight = 0.001 neff = 461.04
config 374/412=[ -1.50 18.75] weight = 0.000 adjusted weight = 0.000 neff = 536.98
config 375/412=[ 1.50 18.75] weight = 0.154 adjusted weight = 0.003 neff = 436.91
config 376/412=[ 2.25 18.75] weight = 0.216 adjusted weight = 0.004 neff = 413.50
config 377/412=[ 3.00 18.75] weight = 0.206 adjusted weight = 0.004 neff = 390.82
config 378/412=[ 3.75 18.75] weight = 0.129 adjusted weight = 0.003 neff = 369.01
config 379/412=[ 4.50 18.75] weight = 0.062 adjusted weight = 0.001 neff = 347.89
config 380/412=[ 0.00 19.50] weight = 0.009 adjusted weight = 0.000 neff = 488.64
config 381/412=[ -0.75 19.50] weight = 0.002 adjusted weight = 0.000 neff = 514.01
config 382/412=[ 0.75 19.50] weight = 0.032 adjusted weight = 0.001 neff = 463.84
config 383/412=[ -1.50 19.50] weight = 0.000 adjusted weight = 0.000 neff = 539.95
config 384/412=[ 1.50 19.50] weight = 0.072 adjusted weight = 0.001 neff = 439.64
config 385/412=[ 2.25 19.50] weight = 0.106 adjusted weight = 0.002 neff = 416.15
config 386/412=[ 3.00 19.50] weight = 0.105 adjusted weight = 0.002 neff = 393.37
config 387/412=[ 3.75 19.50] weight = 0.068 adjusted weight = 0.001 neff = 371.47
config 388/412=[ 4.50 19.50] weight = 0.034 adjusted weight = 0.001 neff = 350.26
config 389/412=[ 0.00 20.25] weight = 0.003 adjusted weight = 0.000 neff = 491.52
config 390/412=[ -0.75 20.25] weight = 0.001 adjusted weight = 0.000 neff = 516.94
config 391/412=[ 0.75 20.25] weight = 0.011 adjusted weight = 0.000 neff = 466.65
config 392/412=[ 1.50 20.25] weight = 0.027 adjusted weight = 0.001 neff = 442.39
config 393/412=[ 2.25 20.25] weight = 0.041 adjusted weight = 0.001 neff = 418.81
config 394/412=[ 3.00 20.25] weight = 0.043 adjusted weight = 0.001 neff = 395.96
config 395/412=[ 3.75 20.25] weight = 0.030 adjusted weight = 0.001 neff = 373.88
config 396/412=[ 4.50 20.25] weight = 0.015 adjusted weight = 0.000 neff = 352.63
config 397/412=[ 0.00 21.00] weight = 0.001 adjusted weight = 0.000 neff = 494.40
config 398/412=[ 0.75 21.00] weight = 0.003 adjusted weight = 0.000 neff = 469.46
config 399/412=[ -0.75 21.00] weight = 0.000 adjusted weight = 0.000 neff = 519.91
config 400/412=[ 1.50 21.00] weight = 0.008 adjusted weight = 0.000 neff = 445.13
config 401/412=[ 2.25 21.00] weight = 0.013 adjusted weight = 0.000 neff = 421.46
config 402/412=[ 3.00 21.00] weight = 0.014 adjusted weight = 0.000 neff = 398.52
config 403/412=[ 3.75 21.00] weight = 0.010 adjusted weight = 0.000 neff = 376.40
config 404/412=[ 4.50 21.00] weight = 0.005 adjusted weight = 0.000 neff = 355.02
config 405/412=[ 0.00 21.75] weight = 0.000 adjusted weight = 0.000 neff = 497.29
config 406/412=[ 0.75 21.75] weight = 0.001 adjusted weight = 0.000 neff = 472.29
config 407/412=[ 1.50 21.75] weight = 0.002 adjusted weight = 0.000 neff = 447.88
config 408/412=[ 2.25 21.75] weight = 0.003 adjusted weight = 0.000 neff = 424.13
config 409/412=[ 3.00 21.75] weight = 0.003 adjusted weight = 0.000 neff = 401.11
config 410/412=[ 3.75 21.75] weight = 0.002 adjusted weight = 0.000 neff = 378.86
config 411/412=[ 4.50 21.75] weight = 0.001 adjusted weight = 0.000 neff = 357.43
Done.
Expected effective number of parameters: 404.995(35.332), eqv.#replicates: 7.516
DIC:
Mean of Deviance................. 2265.89
Deviance at Mean................. 1928.29
Effective number of parameters... 337.605
DIC.............................. 2603.5
Marginal likelihood: Integration -1039.989489 Gaussian-approx -1041.799275
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37bf20d0f/Model.ini]
Preparations : 0.105 seconds
Approx inference: 1710.519 seconds [0.3|0.0|1.2|79.6|18.9]%
Output : 3.688 seconds
---------------------------------
Total : 1714.313 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326fbb84b] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d36fc07844]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d34517f1ad]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d36fc07844]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d31f596628] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d341b280ab]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33a1393b8]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32641dc2c]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3580057eb] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d37e8c326f] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d326435651] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3ed7f377] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d33b1113e] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d35de2ff56] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d361e99741] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d32ec95e9f] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/data.files/filee1d3266330b8] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fded3513610
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1149.944434 fn= 1 theta= 4.000000 3.990000 range=[-3.019 5.973]
max.logdens= -1149.921406 fn= 2 theta= 3.990000 4.000000 range=[-3.019 5.971]
max.logdens= -1144.150176 fn= 5 theta= 3.032296 3.747910 range=[-3.065 6.111]
max.logdens= -1144.050090 fn= 6 theta= 3.022296 3.747910 range=[-3.066 6.112]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(2367,2367). I will try to fix it...max.logdens= -1138.919526 fn= 11 theta= 2.596830 3.634469 range=[-3.107 6.216]
max.logdens= -1138.775541 fn= 12 theta= 2.586830 3.634469 range=[-3.109 6.220]
max.logdens= -1131.642823 fn= 16 theta= 2.183136 3.526701 range=[-3.172 6.402]
max.logdens= -1131.629337 fn= 18 theta= 2.183136 3.516701 range=[-3.172 6.405]
max.logdens= -1131.438524 fn= 19 theta= 2.173136 3.526701 range=[-3.174 6.407]
max.logdens= -1122.347247 fn= 21 theta= 1.790128 3.424321 range=[-3.269 6.646]
max.logdens= -1122.334173 fn= 22 theta= 1.790128 3.414321 range=[-3.269 6.649]
max.logdens= -1122.084719 fn= 23 theta= 1.780128 3.424321 range=[-3.272 6.652]
max.logdens= -1111.738921 fn= 26 theta= 1.416769 3.327060 range=[-3.406 6.958]
max.logdens= -1111.727430 fn= 27 theta= 1.416769 3.317060 range=[-3.406 6.961]
max.logdens= -1111.440636 fn= 29 theta= 1.406769 3.327060 range=[-3.410 6.967]
max.logdens= -1101.025897 fn= 31 theta= 1.062079 3.234662 range=[-3.582 7.355]
max.logdens= -1101.018392 fn= 32 theta= 1.062079 3.224662 range=[-3.582 7.358]
max.logdens= -1100.728046 fn= 33 theta= 1.052079 3.234662 range=[-3.588 7.367]
max.logdens= -1091.505914 fn= 36 theta= 0.725123 3.146883 range=[-3.797 7.856]
max.logdens= -1091.502248 fn= 37 theta= 0.725123 3.136883 range=[-3.797 7.860]
max.logdens= -1091.248002 fn= 38 theta= 0.715123 3.146883 range=[-3.804 7.872]
max.logdens= -1084.444852 fn= 41 theta= 0.405015 3.063494 range=[-4.055 8.490]
max.logdens= -1084.444181 fn= 42 theta= 0.405015 3.053494 range=[-4.055 8.494]
max.logdens= -1084.271474 fn= 43 theta= 0.395015 3.063494 range=[-4.065 8.512]
max.logdens= -1081.030664 fn= 46 theta= 0.100912 2.984274 range=[-4.368 9.298]
max.logdens= -1080.988528 fn= 48 theta= 0.090912 2.984274 range=[-4.380 9.328]
max.logdens= -1080.862676 fn= 52 theta= 0.027184 2.965068 range=[-4.456 9.534]
max.logdens= -1080.862165 fn= 54 theta= 0.017184 2.965068 range=[-4.469 9.566]
max.logdens= -1080.859276 fn= 56 theta= 0.027184 2.975068 range=[-4.456 9.529]
Iter=1 |grad|=0.537 |x-x.old|=2.9 |f-f.old|=69.1
max.logdens= -1080.857278 fn= 64 theta= 0.023259 2.978252 range=[-4.461 9.540]
max.logdens= -1080.856754 fn= 69 theta= 0.021803 2.979433 range=[-4.463 9.544]
max.logdens= -1080.856579 fn= 74 theta= 0.021010 2.980076 range=[-4.464 9.547]
max.logdens= -1080.856405 fn= 79 theta= 0.020455 2.980527 range=[-4.465 9.548]
max.logdens= -1080.854646 fn= 81 theta= 0.020434 2.970544 range=[-4.465 9.553]
Iter=2 |grad|=0.433 |x-x.old|=0.00615 |f-f.old|=0.00398 Reached numerical limit!
Number of function evaluations = 95
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
79.306881 3.504992
3.504992 10.747743
Eigenvectors of the Hessian
0.998703 -0.050925
0.050925 0.998703
Eigenvalues of the Hessian
79.485603
10.569021
StDev/Correlation matrix (scaled inverse Hessian)
0.113109 -0.120053
0.307251
max.logdens= -1080.674503 fn= 106 theta= -0.010895 3.584940 range=[-4.509 9.426]
Compute corrected stdev for theta[0]: negative 1.149581 positive 1.246631
Compute corrected stdev for theta[1]: negative 2.569578 positive 1.000000
config 0=[ 0.00 0.00] log(rel.dens)=-0.05, [3] accept, compute, 14.29s
config 1=[ -0.75 0.00] log(rel.dens)=-0.28, [1] accept, compute, 14.37s
config 2=[ 0.00 -0.75] log(rel.dens)=-0.08, [2] accept, compute, 14.49s
config 3=[ 0.75 0.00] log(rel.dens)=-0.18, [0] accept, compute, 14.76s
config 4=[ 0.00 0.75] log(rel.dens)= 0.08, [3] accept, compute, 10.66s
config 5=[ -0.75 0.75] log(rel.dens)=-0.17, [1] accept, compute, 10.61s
config 6=[ -0.75 -0.75] log(rel.dens)=-0.34, [2] accept, compute, 10.55s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.31, [0] accept, compute, 10.60s
config 8=[ -1.50 0.00] log(rel.dens)=-0.97, [2] accept, compute, 16.96s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.17, [1] accept, compute, 17.17s
config 10=[ 0.75 0.75] log(rel.dens)=-0.15, [3] accept, compute, 17.24s
config 11=[ 1.50 0.00] log(rel.dens)=-0.80, [0] accept, compute, 17.05s
config 12=[ 0.75 -1.50] log(rel.dens)=-0.48, [3] accept, compute, 18.84s
config 13=[ -0.75 1.50] log(rel.dens)=-0.13, [1] accept, compute, 19.16s
config 14=[ 0.00 1.50] log(rel.dens)= 0.16, [2] accept, compute, 19.55s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.31, [0] accept, compute, 19.24s
config 16=[ 0.75 1.50] log(rel.dens)=-0.04, [3] accept, compute, 13.86s
config 17=[ -1.50 -0.75] log(rel.dens)=-0.93, [1] accept, compute, 14.00s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.88, [2] accept, compute, 13.93s
config 19=[ -1.50 0.75] log(rel.dens)=-0.85, [0] accept, compute, 14.16s
config 20=[ 1.50 0.75] log(rel.dens)=-0.67, [3] accept, compute, 13.94s
config 21=[ -1.50 -1.50] log(rel.dens)=-0.86, [1] accept, compute, 14.37s
config 22=[ 1.50 1.50] log(rel.dens)=-0.47, [2] accept, compute, 14.30s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.03, [0] accept, compute, 14.91s
config 24=[ -1.50 1.50] log(rel.dens)=-0.88, [3] accept, compute, 15.06s
max.logdens= -1080.611798 fn= 138 theta= -0.014811 3.661740 range=[-4.515 9.416]
config 25=[ 2.25 0.00] log(rel.dens)=-1.71, [2] accept, compute, 14.77s
config 26=[ 0.00 -2.25] log(rel.dens)=-0.29, [1] accept, compute, 15.14s
config 27=[ -2.25 0.00] log(rel.dens)=-1.94, [0] accept, compute, 15.35s
config 28=[ 2.25 0.75] log(rel.dens)=-1.44, [2] accept, compute, 18.09s
config 29=[ -0.75 -2.25] log(rel.dens)=-0.48, [1] accept, compute, 18.43s
config 30=[ 0.00 2.25] log(rel.dens)= 0.25, [3] accept, compute, 19.35s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.57, [0] accept, compute, 18.25s
config 32=[ -2.25 -0.75] log(rel.dens)=-1.90, [2] accept, compute, 18.55s
config 33=[ -0.75 2.25] log(rel.dens)=-0.19, [3] accept, compute, 18.32s
config 34=[ 2.25 -0.75] log(rel.dens)=-1.78, [1] accept, compute, 18.49s
config 35=[ -2.25 0.75] log(rel.dens)=-2.00, [0] accept, compute, 17.84s
config 36=[ 0.75 2.25] log(rel.dens)= 0.18, [2] accept, compute, 15.12s
config 37=[ -2.25 -1.50] log(rel.dens)=-1.84, [3] accept, compute, 15.12s
config 38=[ 2.25 -1.50] log(rel.dens)=-1.94, [1] accept, compute, 15.14s
config 39=[ -1.50 -2.25] log(rel.dens)=-0.90, [0] accept, compute, 15.82s
config 40=[ 2.25 1.50] log(rel.dens)=-1.25, [2] accept, compute, 14.26s
config 41=[ -1.50 2.25] log(rel.dens)=-1.04, [3] accept, compute, 14.24s
config 42=[ 1.50 -2.25] log(rel.dens)=-1.24, [1] accept, compute, 14.16s
max.logdens= -1080.518729 fn= 155 theta= -0.026559 3.892139 range=[-4.533 9.394]
config 43=[ -2.25 1.50] log(rel.dens)=-2.07, [0] accept, compute, 13.74s
config 44=[ 1.50 2.25] log(rel.dens)=-0.34, [2] accept, compute, 11.26s
config 45=[ 0.00 3.00] log(rel.dens)= 0.34, [3] accept, compute, 11.14s
config 46=[ 3.00 0.00] log(rel.dens)=-2.78, [1] accept, compute, 11.45s
config 47=[ 0.00 -3.00] log(rel.dens)=-0.44, [0] accept, compute, 11.21s
config 48=[ -3.00 0.00] log(rel.dens)=-3.53, [2] accept, compute, 11.03s
config 49=[ -0.75 -3.00] log(rel.dens)=-0.51, [3] accept, compute, 10.98s
config 50=[ -3.00 0.75] log(rel.dens)=-3.76, [1] accept, compute, 10.99s
config 51=[ 3.00 0.75] log(rel.dens)=-2.59, [0] accept, compute, 11.03s
config 52=[ -0.75 3.00] log(rel.dens)=-0.06, [2] accept, compute, 10.91s
config 53=[ 0.75 -3.00] log(rel.dens)=-0.73, [3] accept, compute, 10.88s
config 54=[ 0.75 3.00] log(rel.dens)= 0.31, [1] accept, compute, 11.11s
config 55=[ 3.00 -0.75] log(rel.dens)=-2.98, [0] accept, compute, 10.94s
config 56=[ 2.25 2.25] log(rel.dens)=-1.04, [3] accept, compute, 11.20s
config 57=[ -3.00 -0.75] log(rel.dens)=-3.38, [2] accept, compute, 11.48s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.10, [1] accept, compute, 11.32s
config 59=[ -2.25 -2.25] log(rel.dens)=-1.90, [0] accept, compute, 11.44s
config 60=[ -2.25 2.25] log(rel.dens)=-2.18, [3] accept, compute, 11.51s
config 61=[ -1.50 3.00] log(rel.dens)=-0.90, [2] accept, compute, 11.51s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.37, [1] accept, compute, 11.46s
config 63=[ 1.50 -3.00] log(rel.dens)=-1.36, [0] accept, compute, 11.78s
config 64=[ 3.00 1.50] log(rel.dens)=-2.41, [3] accept, compute, 11.79s
config 65=[ 1.50 3.00] log(rel.dens)=-0.08, [2] accept, compute, 11.78s
config 66=[ -3.00 1.50] log(rel.dens)=-3.86, [1] accept, compute, 11.55s
config 67=[ -1.50 -3.00] log(rel.dens)=-0.99, [0] accept, compute, 11.64s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.13, [3] accept, compute, 11.86s
config 69=[ -2.25 -3.00] log(rel.dens)=-1.91, [2] accept, compute, 11.80s
config 70=[ 2.25 -3.00] log(rel.dens)=-2.34, [1] accept, compute, 11.86s
config 71=[ 0.00 -3.75] log(rel.dens)=-0.63, [0] accept, compute, 11.91s
config 72=[ -3.00 2.25] log(rel.dens)=-4.06, [3] accept, compute, 13.48s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.33, [2] accept, compute, 13.59s
config 74=[ 3.00 2.25] log(rel.dens)=-2.14, [1] accept, compute, 13.27s
max.logdens= -1080.431901 fn= 187 theta= -0.038307 4.122537 range=[-4.550 9.382]
config 75=[ -3.00 -2.25] log(rel.dens)=-3.25, [0] accept, compute, 13.13s
config 76=[ 2.25 3.00] log(rel.dens)=-0.87, [3] accept, compute, 14.23s
config 77=[ 0.00 3.75] log(rel.dens)= 0.43, [2] accept, compute, 14.19s
config 78=[ -2.25 3.00] log(rel.dens)=-2.30, [1] accept, compute, 14.42s
config 79=[ 3.75 0.00] log(rel.dens)=-4.29, [0] accept, compute, 14.06s
config 80=[ -0.75 3.75] log(rel.dens)=-0.11, [2] accept, compute, 12.20s
config 81=[ -3.75 0.00] log(rel.dens)=-5.69, [3] accept, compute, 12.58s
config 82=[ 0.75 -3.75] log(rel.dens)=-0.95, [1] accept, compute, 12.35s
max.logdens= -1080.411539 fn= 195 theta= 0.045707 4.126821 range=[-4.445 9.109]
config 83=[ 3.75 0.75] log(rel.dens)=-4.01, [0] accept, compute, 12.27s
config 84=[ 0.75 3.75] log(rel.dens)= 0.45, [3] accept, compute, 11.59s
config 85=[ 3.75 -0.75] log(rel.dens)=-4.43, [2] accept, compute, 12.04s
config 86=[ -3.75 -0.75] log(rel.dens)=-5.45, [1] accept, compute, 12.01s
config 87=[ -3.75 0.75] log(rel.dens)=-5.75, [0] accept, compute, 12.13s
config 88=[ -0.75 -3.75] log(rel.dens)=-0.69, [3] accept, compute, 11.91s
config 89=[ -1.50 3.75] log(rel.dens)=-1.00, [2] accept, compute, 11.87s
config 90=[ 3.75 1.50] log(rel.dens)=-3.77, [1] accept, compute, 12.45s
config 91=[ -1.50 -3.75] log(rel.dens)=-1.15, [0] accept, compute, 12.24s
config 92=[ 1.50 3.75] log(rel.dens)= 0.11, [2] accept, compute, 16.54s
config 93=[ 1.50 -3.75] log(rel.dens)=-1.56, [3] accept, compute, 16.89s
config 94=[ -3.75 1.50] log(rel.dens)=-6.03, reject, 0.38s
config 95=[ -3.75 -1.50] log(rel.dens)=-5.25, [0] accept, compute, 16.19s
config 96=[ 3.75 -1.50] log(rel.dens)=-4.58, [1] accept, compute, 16.29s
config 97=[ -3.00 -3.00] log(rel.dens)=-3.29, [3] accept, compute, 12.41s
config 98=[ 3.00 -3.00] log(rel.dens)=-3.61, [2] accept, compute, 13.89s
config 99=[ 3.00 3.00] log(rel.dens)=-1.98, [0] accept, compute, 14.09s
config 100=[ -3.00 3.00] log(rel.dens)=-4.03, [1] accept, compute, 14.40s
config 101=[ 2.25 -3.75] log(rel.dens)=-2.51, [3] accept, compute, 15.09s
config 102=[ -2.25 -3.75] log(rel.dens)=-2.07, [0] accept, compute, 13.11s
config 103=[ 2.25 3.75] log(rel.dens)=-0.60, [2] accept, compute, 13.95s
config 104=[ 3.75 -2.25] log(rel.dens)=-4.87, [1] accept, compute, 13.34s
max.logdens= -1080.341957 fn= 218 theta= -0.050055 4.352936 range=[-4.568 9.379]
config 105=[ 3.75 2.25] log(rel.dens)=-3.52, [3] accept, compute, 11.75s
config 106=[ -3.75 -2.25] log(rel.dens)=-5.14, [0] accept, compute, 11.64s
config 107=[ -4.50 0.00] log(rel.dens)=-8.15, reject, 0.45s
config 108=[ -2.25 3.75] log(rel.dens)=-2.34, [2] accept, compute, 11.64s
config 109=[ 0.00 4.50] log(rel.dens)= 0.52, [1] accept, compute, 11.63s
config 110=[ 4.50 -0.75] log(rel.dens)=-6.17, reject, 0.30s
config 111=[ 0.00 -4.50] log(rel.dens)=-0.91, [0] accept, compute, 11.04s
config 112=[ 4.50 0.00] log(rel.dens)=-5.88, [3] accept, compute, 11.27s
max.logdens= -1080.233238 fn= 225 theta= 0.033959 4.357220 range=[-4.462 9.102]
config 113=[ 0.75 -4.50] log(rel.dens)=-1.20, [1] accept, compute, 11.30s
config 114=[ -0.75 4.50] log(rel.dens)=-0.05, [2] accept, compute, 11.40s
config 115=[ 0.75 4.50] log(rel.dens)= 0.63, [0] accept, compute, 11.79s
config 116=[ -0.75 -4.50] log(rel.dens)=-1.00, [3] accept, compute, 11.80s
config 117=[ -1.50 4.50] log(rel.dens)=-1.04, [2] accept, compute, 11.42s
config 118=[ 4.50 0.75] log(rel.dens)=-5.66, [1] accept, compute, 11.60s
config 119=[ -1.50 -4.50] log(rel.dens)=-1.39, [0] accept, compute, 10.66s
config 120=[ 1.50 4.50] log(rel.dens)= 0.32, [3] accept, compute, 10.67s
config 121=[ 4.50 1.50] log(rel.dens)=-5.47, [2] accept, compute, 10.93s
config 122=[ 1.50 -4.50] log(rel.dens)=-1.82, [1] accept, compute, 10.97s
config 123=[ 3.75 -3.00] log(rel.dens)=-4.93, [0] accept, compute, 12.46s
config 124=[ -3.00 -3.75] log(rel.dens)=-3.36, [3] accept, compute, 12.25s
config 125=[ -3.00 3.75] log(rel.dens)=-4.27, [1] accept, compute, 12.38s
config 126=[ 3.00 3.75] log(rel.dens)=-1.63, [2] accept, compute, 12.49s
config 127=[ 3.75 3.00] log(rel.dens)=-3.25, [0] accept, compute, 11.20s
config 128=[ 3.00 -3.75] log(rel.dens)=-3.71, [3] accept, compute, 11.31s
config 129=[ 2.25 -4.50] log(rel.dens)=-2.71, [2] accept, compute, 11.35s
config 130=[ -3.75 -3.00] log(rel.dens)=-5.09, [1] accept, compute, 11.40s
config 131=[ -2.25 -4.50] log(rel.dens)=-2.32, [0] accept, compute, 11.56s
config 132=[ -2.25 4.50] log(rel.dens)=-2.50, [3] accept, compute, 11.36s
max.logdens= -1080.209337 fn= 245 theta= -0.061803 4.583335 range=[-4.586 9.383]
config 133=[ 5.25 0.00] log(rel.dens)=-7.74, reject, 0.42s
config 134=[ 4.50 2.25] log(rel.dens)=-5.14, [1] accept, compute, 11.65s
config 135=[ 2.25 4.50] log(rel.dens)=-0.35, [2] accept, compute, 11.70s
config 136=[ 0.00 5.25] log(rel.dens)= 0.65, [0] accept, compute, 14.38s
config 137=[ 0.00 -5.25] log(rel.dens)=-1.30, [3] accept, compute, 14.75s
config 138=[ -0.75 -5.25] log(rel.dens)=-1.36, [1] accept, compute, 14.81s
config 139=[ 3.75 3.75] log(rel.dens)=-2.95, [2] accept, compute, 15.32s
max.logdens= -1080.077106 fn= 253 theta= 0.022211 4.587619 range=[-4.479 9.104]
config 140=[ -0.75 5.25] log(rel.dens)=-0.02, [0] accept, compute, 14.10s
config 141=[ -3.75 -3.75] log(rel.dens)=-5.15, [3] accept, compute, 13.83s
config 142=[ 0.75 -5.25] log(rel.dens)=-1.53, [1] accept, compute, 15.57s
config 143=[ 0.75 5.25] log(rel.dens)= 0.78, [2] accept, compute, 16.48s
config 144=[ 3.75 -3.75] log(rel.dens)=-5.11, [0] accept, compute, 20.69s
config 145=[ -3.00 -4.50] log(rel.dens)=-3.66, [3] accept, compute, 20.60s
config 146=[ 3.00 -4.50] log(rel.dens)=-3.87, [1] accept, compute, 20.25s
config 147=[ -3.00 4.50] log(rel.dens)=-4.34, [2] accept, compute, 19.36s
config 148=[ 3.00 4.50] log(rel.dens)=-1.35, [0] accept, compute, 19.20s
config 149=[ 4.50 3.00] log(rel.dens)=-4.95, [3] accept, compute, 19.13s
config 150=[ 1.50 5.25] log(rel.dens)= 0.52, [1] accept, compute, 18.36s
config 151=[ -1.50 5.25] log(rel.dens)=-0.93, [2] accept, compute, 18.09s
config 152=[ -1.50 -5.25] log(rel.dens)=-1.77, [0] accept, compute, 17.10s
config 153=[ 1.50 -5.25] log(rel.dens)=-2.14, [3] accept, compute, 17.59s
config 154=[ 2.25 5.25] log(rel.dens)=-0.17, [1] accept, compute, 18.55s
config 155=[ -2.25 5.25] log(rel.dens)=-2.58, [2] accept, compute, 19.03s
config 156=[ -2.25 -5.25] log(rel.dens)=-2.66, [0] accept, compute, 15.93s
config 157=[ 2.25 -5.25] log(rel.dens)=-3.05, [3] accept, compute, 16.23s
config 158=[ 4.50 3.75] log(rel.dens)=-4.53, [1] accept, compute, 14.98s
config 159=[ -3.75 -4.50] log(rel.dens)=-5.26, [2] accept, compute, 15.13s
config 160=[ 3.75 4.50] log(rel.dens)=-2.69, [0] accept, compute, 16.07s
config 161=[ 3.75 -4.50] log(rel.dens)=-5.24, [3] accept, compute, 15.79s
config 162=[ 0.00 -6.00] log(rel.dens)=-1.75, [1] accept, compute, 15.45s
config 163=[ 0.00 6.00] log(rel.dens)= 0.75, [2] accept, compute, 16.27s
config 164=[ 3.00 5.25] log(rel.dens)=-1.13, [0] accept, compute, 14.04s
config 165=[ 0.75 -6.00] log(rel.dens)=-1.98, [3] accept, compute, 14.07s
config 166=[ -3.00 5.25] log(rel.dens)=-4.51, [1] accept, compute, 13.70s
max.logdens= -1079.922800 fn= 280 theta= 0.010463 4.818017 range=[-4.495 9.112]
config 167=[ -0.75 -6.00] log(rel.dens)=-1.79, [2] accept, compute, 13.89s
config 168=[ 3.00 -5.25] log(rel.dens)=-4.12, [0] accept, compute, 15.16s
config 169=[ -3.00 -5.25] log(rel.dens)=-3.83, [3] accept, compute, 16.02s
config 170=[ 0.75 6.00] log(rel.dens)= 0.94, [1] accept, compute, 16.53s
config 171=[ -0.75 6.00] log(rel.dens)= 0.13, [2] accept, compute, 16.28s
config 172=[ 1.50 6.00] log(rel.dens)= 0.73, [0] accept, compute, 12.93s
config 173=[ -1.50 -6.00] log(rel.dens)=-2.22, [3] accept, compute, 12.12s
config 174=[ -1.50 6.00] log(rel.dens)=-0.95, [1] accept, compute, 12.00s
config 175=[ 1.50 -6.00] log(rel.dens)=-2.55, [2] accept, compute, 11.43s
config 176=[ 4.50 4.50] log(rel.dens)=-4.20, [0] accept, compute, 10.84s
config 177=[ 2.25 -6.00] log(rel.dens)=-3.36, [3] accept, compute, 10.96s
config 178=[ -2.25 -6.00] log(rel.dens)=-3.05, [1] accept, compute, 10.96s
config 179=[ -2.25 6.00] log(rel.dens)=-2.60, [2] accept, compute, 11.11s
config 180=[ 2.25 6.00] log(rel.dens)= 0.16, [0] accept, compute, 10.64s
config 181=[ -3.75 -5.25] log(rel.dens)=-5.64, [3] accept, compute, 10.92s
config 182=[ 3.75 -5.25] log(rel.dens)=-5.48, [1] accept, compute, 10.92s
config 183=[ 3.75 5.25] log(rel.dens)=-2.39, [2] accept, compute, 10.87s
config 184=[ -3.00 -6.00] log(rel.dens)=-4.35, [0] accept, compute, 10.52s
config 185=[ 3.00 6.00] log(rel.dens)=-0.85, [3] accept, compute, 10.61s
config 186=[ 3.00 -6.00] log(rel.dens)=-4.48, [1] accept, compute, 10.55s
config 187=[ -3.00 6.00] log(rel.dens)=-4.61, [2] accept, compute, 10.96s
config 188=[ 0.00 -6.75] log(rel.dens)=-2.33, [0] accept, compute, 10.85s
config 189=[ 0.00 6.75] log(rel.dens)= 0.87, [3] accept, compute, 10.67s
max.logdens= -1079.833986 fn= 303 theta= -0.001285 5.048416 range=[-4.512 9.127]
config 190=[ -0.75 6.75] log(rel.dens)= 0.13, [1] accept, compute, 10.67s
config 191=[ 0.75 -6.75] log(rel.dens)=-2.61, [2] accept, compute, 11.34s
config 192=[ -0.75 -6.75] log(rel.dens)=-2.50, [0] accept, compute, 15.98s
config 193=[ 0.75 6.75] log(rel.dens)= 1.03, [3] accept, compute, 16.33s
config 194=[ -1.50 6.75] log(rel.dens)=-1.09, [1] accept, compute, 16.77s
config 195=[ 4.50 5.25] log(rel.dens)=-3.86, [2] accept, compute, 16.12s
config 196=[ 1.50 6.75] log(rel.dens)= 0.95, [0] accept, compute, 12.88s
config 197=[ 1.50 -6.75] log(rel.dens)=-3.06, [3] accept, compute, 12.93s
config 198=[ -1.50 -6.75] log(rel.dens)=-2.89, [1] accept, compute, 13.20s
config 199=[ -3.75 -6.00] log(rel.dens)=-5.96, [2] accept, compute, 12.84s
config 200=[ 3.75 6.00] log(rel.dens)=-1.99, [0] accept, compute, 13.13s
config 201=[ 3.75 -6.00] log(rel.dens)=-5.67, [3] accept, compute, 12.95s
config 202=[ -2.25 -6.75] log(rel.dens)=-3.80, [1] accept, compute, 13.41s
config 203=[ -2.25 6.75] log(rel.dens)=-2.61, [2] accept, compute, 13.62s
config 204=[ 2.25 6.75] log(rel.dens)= 0.42, [0] accept, compute, 15.81s
config 205=[ 2.25 -6.75] log(rel.dens)=-3.80, [3] accept, compute, 15.62s
config 206=[ 3.00 6.75] log(rel.dens)=-0.51, [1] accept, compute, 15.77s
config 207=[ -3.00 -6.75] log(rel.dens)=-4.95, [2] accept, compute, 15.52s
config 208=[ -3.00 6.75] log(rel.dens)=-4.86, [0] accept, compute, 13.27s
config 209=[ 3.00 -6.75] log(rel.dens)=-4.83, [3] accept, compute, 13.47s
config 210=[ 0.00 7.50] log(rel.dens)= 0.97, [1] accept, compute, 14.14s
config 211=[ 4.50 6.00] log(rel.dens)=-3.60, [2] accept, compute, 14.38s
config 212=[ 0.00 -7.50] log(rel.dens)=-3.17, [0] accept, compute, 17.39s
max.logdens= -1079.593051 fn= 326 theta= -0.013034 5.278815 range=[-4.528 9.146]
config 213=[ -0.75 -7.50] log(rel.dens)=-3.27, [3] accept, compute, 17.20s
config 214=[ -0.75 7.50] log(rel.dens)= 0.12, [1] accept, compute, 15.88s
config 215=[ 0.75 -7.50] log(rel.dens)=-3.32, [2] accept, compute, 15.31s
config 216=[ 0.75 7.50] log(rel.dens)= 1.27, [0] accept, compute, 11.89s
config 217=[ 1.50 -7.50] log(rel.dens)=-3.70, [3] accept, compute, 11.74s
config 218=[ -3.75 -6.75] log(rel.dens)=-6.66, reject, 0.33s
config 219=[ 3.75 -6.75] log(rel.dens)=-6.07, reject, 0.35s
config 220=[ 1.50 7.50] log(rel.dens)= 1.17, [1] accept, compute, 11.96s
config 221=[ -1.50 -7.50] log(rel.dens)=-3.74, [2] accept, compute, 12.21s
config 222=[ -1.50 7.50] log(rel.dens)=-0.99, [0] accept, compute, 11.18s
config 223=[ 3.75 6.75] log(rel.dens)=-1.66, [3] accept, compute, 11.83s
config 224=[ -2.25 7.50] log(rel.dens)=-2.72, [1] accept, compute, 12.24s
config 225=[ 2.25 -7.50] log(rel.dens)=-4.38, [2] accept, compute, 13.13s
config 226=[ 2.25 7.50] log(rel.dens)= 0.67, [0] accept, compute, 14.85s
config 227=[ -2.25 -7.50] log(rel.dens)=-4.59, [3] accept, compute, 16.73s
config 228=[ -3.00 7.50] log(rel.dens)=-5.08, [1] accept, compute, 16.07s
config 229=[ -3.00 -7.50] log(rel.dens)=-5.88, [2] accept, compute, 16.50s
config 230=[ 3.00 -7.50] log(rel.dens)=-5.29, [0] accept, compute, 20.66s
config 231=[ 3.00 7.50] log(rel.dens)=-0.21, [3] accept, compute, 20.18s
config 232=[ 4.50 6.75] log(rel.dens)=-3.11, [1] accept, compute, 19.95s
max.logdens= -1079.440979 fn= 346 theta= -0.024782 5.509213 range=[-4.544 9.169]
config 233=[ 0.00 -8.25] log(rel.dens)=-4.13, [2] accept, compute, 19.99s
config 234=[ 0.00 8.25] log(rel.dens)= 1.03, [0] accept, compute, 14.74s
config 235=[ 0.75 -8.25] log(rel.dens)=-4.25, [3] accept, compute, 13.52s
config 236=[ 0.75 8.25] log(rel.dens)= 1.42, [1] accept, compute, 13.38s
config 237=[ -0.75 8.25] log(rel.dens)= 0.25, [2] accept, compute, 12.61s
config 238=[ -0.75 -8.25] log(rel.dens)=-4.38, [0] accept, compute, 11.84s
config 239=[ 1.50 8.25] log(rel.dens)= 1.36, [3] accept, compute, 11.00s
config 240=[ -1.50 -8.25] log(rel.dens)=-4.92, [1] accept, compute, 11.32s
config 241=[ 3.75 7.50] log(rel.dens)=-1.33, [2] accept, compute, 11.16s
config 242=[ 1.50 -8.25] log(rel.dens)=-4.55, [0] accept, compute, 11.75s
config 243=[ -1.50 8.25] log(rel.dens)=-1.02, [3] accept, compute, 11.89s
config 244=[ 2.25 8.25] log(rel.dens)= 0.90, [1] accept, compute, 11.80s
config 245=[ -2.25 8.25] log(rel.dens)=-2.95, [2] accept, compute, 11.81s
config 246=[ -2.25 -8.25] log(rel.dens)=-5.77, [0] accept, compute, 11.37s
config 247=[ 2.25 -8.25] log(rel.dens)=-5.12, [3] accept, compute, 11.44s
config 248=[ 4.50 7.50] log(rel.dens)=-2.74, [1] accept, compute, 11.48s
config 249=[ -3.00 -8.25] log(rel.dens)=-7.02, reject, 0.48s
config 250=[ 3.00 -8.25] log(rel.dens)=-5.90, [2] accept, compute, 11.56s
config 251=[ 3.00 8.25] log(rel.dens)= 0.08, [0] accept, compute, 11.03s
max.logdens= -1079.278810 fn= 365 theta= -0.036530 5.739612 range=[-4.560 9.196]
config 252=[ -3.00 8.25] log(rel.dens)=-5.10, [3] accept, compute, 11.50s
config 253=[ 0.00 -9.00] log(rel.dens)=-5.45, [1] accept, compute, 11.29s
config 254=[ 0.00 9.00] log(rel.dens)= 1.11, [2] accept, compute, 11.48s
config 255=[ 0.75 9.00] log(rel.dens)= 1.58, [0] accept, compute, 11.11s
config 256=[ -0.75 -9.00] log(rel.dens)=-5.74, [3] accept, compute, 11.49s
config 257=[ -0.75 9.00] log(rel.dens)= 0.26, [1] accept, compute, 10.97s
config 258=[ -1.50 -9.00] log(rel.dens)=-6.39, reject, 0.35s
config 259=[ 0.75 -9.00] log(rel.dens)=-5.47, [2] accept, compute, 10.84s
config 260=[ 3.75 8.25] log(rel.dens)=-0.97, [0] accept, compute, 10.90s
config 261=[ -1.50 9.00] log(rel.dens)=-1.09, [3] accept, compute, 10.75s
config 262=[ 1.50 -9.00] log(rel.dens)=-5.65, [1] accept, compute, 11.04s
config 263=[ 2.25 -9.00] log(rel.dens)=-6.14, reject, 0.25s
config 264=[ 1.50 9.00] log(rel.dens)= 1.56, [2] accept, compute, 10.86s
config 265=[ -2.25 9.00] log(rel.dens)=-3.07, [0] accept, compute, 10.99s
config 266=[ 2.25 9.00] log(rel.dens)= 1.18, [3] accept, compute, 10.99s
config 267=[ 4.50 8.25] log(rel.dens)=-2.39, [1] accept, compute, 10.84s
config 268=[ -3.00 9.00] log(rel.dens)=-5.34, [2] accept, compute, 10.83s
config 269=[ 0.00 -9.75] log(rel.dens)=-7.14, reject, 0.44s
config 270=[ 3.00 9.00] log(rel.dens)= 0.39, [0] accept, compute, 10.89s
max.logdens= -1079.141571 fn= 384 theta= -0.048278 5.970011 range=[-4.576 9.225]
config 271=[ 0.00 9.75] log(rel.dens)= 1.24, [3] accept, compute, 11.31s
config 272=[ -0.75 9.75] log(rel.dens)= 0.27, [1] accept, compute, 11.13s
config 273=[ 3.75 9.00] log(rel.dens)=-0.75, [2] accept, compute, 11.37s
max.logdens= -1079.088032 fn= 386 theta= 0.035736 5.974295 range=[-4.471 8.950]
config 274=[ 0.75 9.75] log(rel.dens)= 1.72, [0] accept, compute, 11.84s
config 275=[ -1.50 9.75] log(rel.dens)=-1.11, [3] accept, compute, 11.70s
config 276=[ 1.50 9.75] log(rel.dens)= 1.77, [1] accept, compute, 11.58s
config 277=[ 2.25 9.75] log(rel.dens)= 1.43, [2] accept, compute, 11.82s
config 278=[ -2.25 9.75] log(rel.dens)=-3.04, [0] accept, compute, 13.10s
config 279=[ 4.50 9.00] log(rel.dens)=-2.05, [3] accept, compute, 13.24s
config 280=[ 3.00 9.75] log(rel.dens)= 0.73, [1] accept, compute, 13.52s
config 281=[ -3.00 9.75] log(rel.dens)=-5.59, [2] accept, compute, 13.34s
max.logdens= -1079.034771 fn= 395 theta= -0.060026 6.200410 range=[-4.592 9.258]
config 282=[ 3.75 9.75] log(rel.dens)=-0.37, [0] accept, compute, 12.83s
config 283=[ 0.00 10.50] log(rel.dens)= 1.27, [3] accept, compute, 14.50s
max.logdens= -1078.907239 fn= 397 theta= 0.023988 6.204693 range=[-4.486 8.979]
config 284=[ -0.75 10.50] log(rel.dens)= 0.28, [1] accept, compute, 14.93s
config 285=[ 0.75 10.50] log(rel.dens)= 1.83, [2] accept, compute, 14.96s
config 286=[ -1.50 10.50] log(rel.dens)=-1.27, [0] accept, compute, 20.20s
config 287=[ 1.50 10.50] log(rel.dens)= 1.95, [3] accept, compute, 20.60s
config 288=[ 4.50 9.75] log(rel.dens)=-1.66, [1] accept, compute, 19.98s
config 289=[ 2.25 10.50] log(rel.dens)= 1.67, [2] accept, compute, 19.94s
config 290=[ -2.25 10.50] log(rel.dens)=-3.32, [0] accept, compute, 13.81s
config 291=[ -3.00 10.50] log(rel.dens)=-5.76, [3] accept, compute, 12.65s
config 292=[ 3.00 10.50] log(rel.dens)= 1.01, [1] accept, compute, 12.35s
config 293=[ 3.75 10.50] log(rel.dens)= 0.02, [2] accept, compute, 12.57s
max.logdens= -1078.746865 fn= 407 theta= 0.012240 6.435092 range=[-4.501 9.010]
config 294=[ 0.00 11.25] log(rel.dens)= 1.35, [0] accept, compute, 12.22s
config 295=[ -0.75 11.25] log(rel.dens)= 0.28, [3] accept, compute, 11.12s
config 296=[ 0.75 11.25] log(rel.dens)= 1.95, [1] accept, compute, 11.27s
config 297=[ 1.50 11.25] log(rel.dens)= 2.11, [2] accept, compute, 11.77s
config 298=[ -1.50 11.25] log(rel.dens)=-1.27, [0] accept, compute, 12.00s
config 299=[ 4.50 10.50] log(rel.dens)=-1.30, [3] accept, compute, 11.65s
config 300=[ -2.25 11.25] log(rel.dens)=-3.35, [1] accept, compute, 11.39s
config 301=[ 2.25 11.25] log(rel.dens)= 1.80, [2] accept, compute, 11.03s
config 302=[ -3.00 11.25] log(rel.dens)=-5.94, [0] accept, compute, 13.57s
config 303=[ 3.00 11.25] log(rel.dens)= 1.27, [3] accept, compute, 13.84s
config 304=[ 3.75 11.25] log(rel.dens)= 0.25, [1] accept, compute, 14.66s
config 305=[ 0.00 12.00] log(rel.dens)= 1.37, [2] accept, compute, 14.72s
max.logdens= -1078.604774 fn= 419 theta= 0.000491 6.665491 range=[-4.516 9.043]
config 306=[ -0.75 12.00] log(rel.dens)= 0.23, [0] accept, compute, 14.95s
config 307=[ 0.75 12.00] log(rel.dens)= 2.03, [3] accept, compute, 14.63s
config 308=[ -1.50 12.00] log(rel.dens)=-1.48, [1] accept, compute, 14.15s
config 309=[ 1.50 12.00] log(rel.dens)= 2.26, [2] accept, compute, 13.70s
config 310=[ 4.50 11.25] log(rel.dens)=-0.96, [0] accept, compute, 10.68s
config 311=[ -3.00 12.00] log(rel.dens)=-6.20, reject, 0.41s
config 312=[ -2.25 12.00] log(rel.dens)=-3.54, [3] accept, compute, 10.89s
config 313=[ 2.25 12.00] log(rel.dens)= 2.06, [1] accept, compute, 10.87s
config 314=[ 3.00 12.00] log(rel.dens)= 1.52, [2] accept, compute, 11.01s
config 315=[ 3.75 12.00] log(rel.dens)= 0.48, [0] accept, compute, 11.23s
config 316=[ 0.00 12.75] log(rel.dens)= 1.36, [3] accept, compute, 11.38s
config 317=[ 0.75 12.75] log(rel.dens)= 2.09, [1] accept, compute, 11.07s
max.logdens= -1078.582850 fn= 431 theta= -0.011257 6.895890 range=[-4.531 9.077]
config 318=[ -0.75 12.75] log(rel.dens)= 0.14, [2] accept, compute, 11.36s
config 319=[ 4.50 12.00] log(rel.dens)=-0.64, [0] accept, compute, 11.49s
config 320=[ -1.50 12.75] log(rel.dens)=-1.53, [3] accept, compute, 11.68s
config 321=[ 1.50 12.75] log(rel.dens)= 2.28, [1] accept, compute, 11.42s
config 322=[ -2.25 12.75] log(rel.dens)=-3.74, [2] accept, compute, 11.49s
config 323=[ 2.25 12.75] log(rel.dens)= 2.24, [0] accept, compute, 10.83s
config 324=[ 3.00 12.75] log(rel.dens)= 1.70, [3] accept, compute, 10.91s
config 325=[ 3.75 12.75] log(rel.dens)= 0.88, [1] accept, compute, 10.90s
config 326=[ 0.00 13.50] log(rel.dens)= 1.32, [2] accept, compute, 11.13s
max.logdens= -1078.409111 fn= 440 theta= -0.023005 7.126288 range=[-4.546 9.113]
config 327=[ 4.50 12.75] log(rel.dens)=-0.29, [0] accept, compute, 11.75s
config 328=[ 0.75 13.50] log(rel.dens)= 2.11, [3] accept, compute, 11.80s
config 329=[ -0.75 13.50] log(rel.dens)= 0.01, [1] accept, compute, 11.56s
config 330=[ 1.50 13.50] log(rel.dens)= 2.45, [2] accept, compute, 11.55s
config 331=[ -1.50 13.50] log(rel.dens)=-1.86, [0] accept, compute, 11.04s
config 332=[ -2.25 13.50] log(rel.dens)=-4.01, [3] accept, compute, 10.88s
config 333=[ 2.25 13.50] log(rel.dens)= 2.37, [1] accept, compute, 10.85s
config 334=[ 3.00 13.50] log(rel.dens)= 1.92, [2] accept, compute, 10.73s
config 335=[ 3.75 13.50] log(rel.dens)= 1.06, [0] accept, compute, 11.12s
config 336=[ 4.50 13.50] log(rel.dens)=-0.14, [3] accept, compute, 10.73s
config 337=[ 0.00 14.25] log(rel.dens)= 1.24, [1] accept, compute, 10.74s
max.logdens= -1078.367341 fn= 451 theta= -0.034753 7.356687 range=[-4.561 9.149]
config 338=[ -0.75 14.25] log(rel.dens)=-0.12, [2] accept, compute, 10.96s
config 339=[ 0.75 14.25] log(rel.dens)= 2.08, [0] accept, compute, 11.28s
config 340=[ -1.50 14.25] log(rel.dens)=-2.09, [3] accept, compute, 11.11s
config 341=[ 1.50 14.25] log(rel.dens)= 2.49, [1] accept, compute, 11.26s
config 342=[ 2.25 14.25] log(rel.dens)= 2.47, [2] accept, compute, 11.07s
config 343=[ -2.25 14.25] log(rel.dens)=-4.30, [0] accept, compute, 11.78s
config 344=[ 3.00 14.25] log(rel.dens)= 2.04, [3] accept, compute, 11.50s
config 345=[ 3.75 14.25] log(rel.dens)= 1.30, [1] accept, compute, 11.66s
config 346=[ 4.50 14.25] log(rel.dens)= 0.22, [2] accept, compute, 11.71s
config 347=[ 0.00 15.00] log(rel.dens)= 1.10, [0] accept, compute, 10.87s
config 348=[ 0.75 15.00] log(rel.dens)= 2.02, [3] accept, compute, 10.91s
config 349=[ -0.75 15.00] log(rel.dens)=-0.34, [1] accept, compute, 11.00s
max.logdens= -1078.343644 fn= 463 theta= 0.037513 7.591370 range=[-4.472 8.913]
config 350=[ 1.50 15.00] log(rel.dens)= 2.48, [2] accept, compute, 11.16s
config 351=[ -1.50 15.00] log(rel.dens)=-2.20, [0] accept, compute, 11.64s
config 352=[ -2.25 15.00] log(rel.dens)=-4.64, [3] accept, compute, 11.67s
config 353=[ 2.25 15.00] log(rel.dens)= 2.52, [1] accept, compute, 11.16s
config 354=[ 3.00 15.00] log(rel.dens)= 2.17, [2] accept, compute, 11.12s
config 355=[ 3.75 15.00] log(rel.dens)= 1.40, [0] accept, compute, 10.83s
config 356=[ 0.00 15.75] log(rel.dens)= 0.91, [1] accept, compute, 11.01s
config 357=[ 4.50 15.00] log(rel.dens)= 0.28, [3] accept, compute, 11.18s
config 358=[ -0.75 15.75] log(rel.dens)=-0.58, [2] accept, compute, 10.95s
config 359=[ 0.75 15.75] log(rel.dens)= 1.89, [0] accept, compute, 11.03s
config 360=[ -1.50 15.75] log(rel.dens)=-2.53, [1] accept, compute, 10.72s
config 361=[ 1.50 15.75] log(rel.dens)= 2.41, [3] accept, compute, 10.77s
config 362=[ 2.25 15.75] log(rel.dens)= 2.51, [2] accept, compute, 11.27s
config 363=[ -2.25 15.75] log(rel.dens)=-5.05, [0] accept, compute, 10.51s
config 364=[ 3.00 15.75] log(rel.dens)= 2.18, [1] accept, compute, 10.69s
config 365=[ 3.75 15.75] log(rel.dens)= 1.54, [3] accept, compute, 10.92s
config 366=[ 4.50 15.75] log(rel.dens)= 0.54, [2] accept, compute, 10.93s
config 367=[ 0.00 16.50] log(rel.dens)= 0.65, [0] accept, compute, 10.73s
config 368=[ 0.75 16.50] log(rel.dens)= 1.69, [1] accept, compute, 10.78s
config 369=[ -0.75 16.50] log(rel.dens)=-0.94, [3] accept, compute, 10.54s
config 370=[ 1.50 16.50] log(rel.dens)= 2.27, [2] accept, compute, 10.69s
config 371=[ -1.50 16.50] log(rel.dens)=-2.94, [0] accept, compute, 14.29s
config 372=[ 2.25 16.50] log(rel.dens)= 2.42, [3] accept, compute, 14.79s
config 373=[ -2.25 16.50] log(rel.dens)=-5.53, [1] accept, compute, 15.06s
config 374=[ 3.00 16.50] log(rel.dens)= 2.18, [2] accept, compute, 15.65s
config 375=[ 3.75 16.50] log(rel.dens)= 1.50, [0] accept, compute, 21.48s
config 376=[ 4.50 16.50] log(rel.dens)= 0.59, [3] accept, compute, 22.57s
config 377=[ 0.00 17.25] log(rel.dens)= 0.29, [1] accept, compute, 22.98s
config 378=[ -0.75 17.25] log(rel.dens)=-1.34, [2] accept, compute, 24.89s
config 379=[ 0.75 17.25] log(rel.dens)= 1.39, [0] accept, compute, 20.20s
config 380=[ -2.25 17.25] log(rel.dens)=-6.10, reject, 0.42s
config 381=[ 1.50 17.25] log(rel.dens)= 2.04, [3] accept, compute, 18.17s
config 382=[ -1.50 17.25] log(rel.dens)=-3.44, [1] accept, compute, 17.92s
config 383=[ 2.25 17.25] log(rel.dens)= 2.25, [2] accept, compute, 15.62s
config 384=[ 3.00 17.25] log(rel.dens)= 1.99, [0] accept, compute, 13.05s
config 385=[ 3.75 17.25] log(rel.dens)= 1.48, [3] accept, compute, 13.03s
config 386=[ 4.50 17.25] log(rel.dens)= 0.48, [1] accept, compute, 12.79s
config 387=[ 0.00 18.00] log(rel.dens)=-0.19, [2] accept, compute, 12.67s
config 388=[ 0.75 18.00] log(rel.dens)= 0.99, [0] accept, compute, 12.31s
config 389=[ -0.75 18.00] log(rel.dens)=-1.91, [3] accept, compute, 12.28s
config 390=[ -1.50 18.00] log(rel.dens)=-4.22, [1] accept, compute, 12.26s
config 391=[ 1.50 18.00] log(rel.dens)= 1.70, [2] accept, compute, 12.48s
config 392=[ 2.25 18.00] log(rel.dens)= 1.97, [0] accept, compute, 12.49s
config 393=[ 3.75 18.00] log(rel.dens)= 1.24, [1] accept, compute, 12.44s
config 394=[ 3.00 18.00] log(rel.dens)= 1.80, [3] accept, compute, 12.68s
config 395=[ 4.50 18.00] log(rel.dens)= 0.41, [2] accept, compute, 12.55s
config 396=[ 0.00 18.75] log(rel.dens)=-0.80, [0] accept, compute, 12.48s
config 397=[ -0.75 18.75] log(rel.dens)=-2.59, [1] accept, compute, 12.30s
config 398=[ 0.75 18.75] log(rel.dens)= 0.45, [3] accept, compute, 12.65s
config 399=[ -1.50 18.75] log(rel.dens)=-4.98, [2] accept, compute, 13.87s
config 400=[ 1.50 18.75] log(rel.dens)= 1.22, [0] accept, compute, 18.51s
config 401=[ 2.25 18.75] log(rel.dens)= 1.53, [1] accept, compute, 19.09s
config 402=[ 3.00 18.75] log(rel.dens)= 1.44, [3] accept, compute, 18.74s
config 403=[ 3.75 18.75] log(rel.dens)= 0.91, [2] accept, compute, 18.30s
config 404=[ 4.50 18.75] log(rel.dens)= 0.13, [0] accept, compute, 14.84s
config 405=[ 0.00 19.50] log(rel.dens)=-1.58, [1] accept, compute, 15.50s
config 406=[ -0.75 19.50] log(rel.dens)=-3.42, [3] accept, compute, 15.75s
config 407=[ 0.75 19.50] log(rel.dens)=-0.28, [2] accept, compute, 16.21s
config 408=[ -1.50 19.50] log(rel.dens)=-5.91, [0] accept, compute, 15.38s
config 409=[ 1.50 19.50] log(rel.dens)= 0.56, [1] accept, compute, 14.64s
config 410=[ 2.25 19.50] log(rel.dens)= 0.93, [3] accept, compute, 14.43s
config 411=[ 3.00 19.50] log(rel.dens)= 0.89, [2] accept, compute, 13.13s
config 412=[ 3.75 19.50] log(rel.dens)= 0.40, [0] accept, compute, 11.46s
config 413=[ 4.50 19.50] log(rel.dens)=-0.33, [1] accept, compute, 11.16s
config 414=[ 0.00 20.25] log(rel.dens)=-2.59, [3] accept, compute, 11.04s
config 415=[ -1.50 20.25] log(rel.dens)=-6.86, reject, 0.31s
config 416=[ -0.75 20.25] log(rel.dens)=-4.49, [2] accept, compute, 11.16s
config 417=[ 0.75 20.25] log(rel.dens)=-1.22, [0] accept, compute, 14.43s
config 418=[ 1.50 20.25] log(rel.dens)=-0.33, [1] accept, compute, 15.33s
config 419=[ 2.25 20.25] log(rel.dens)= 0.09, [3] accept, compute, 15.39s
config 420=[ 3.00 20.25] log(rel.dens)= 0.11, [2] accept, compute, 16.08s
config 421=[ 3.75 20.25] log(rel.dens)=-0.27, [0] accept, compute, 13.70s
config 422=[ 0.00 21.00] log(rel.dens)=-3.86, [3] accept, compute, 12.59s
config 423=[ 4.50 20.25] log(rel.dens)=-1.01, [1] accept, compute, 13.04s
config 424=[ 0.75 21.00] log(rel.dens)=-2.43, [2] accept, compute, 12.03s
config 425=[ -0.75 21.00] log(rel.dens)=-5.86, [0] accept, compute, 13.34s
config 426=[ 2.25 21.00] log(rel.dens)=-0.98, [1] accept, compute, 14.71s
config 427=[ 1.50 21.00] log(rel.dens)=-1.47, [3] accept, compute, 15.22s
config 428=[ 3.00 21.00] log(rel.dens)=-0.92, [2] accept, compute, 14.48s
config 429=[ -0.75 21.75] log(rel.dens)=-7.51, reject, 0.52s
config 430=[ 3.75 21.00] log(rel.dens)=-1.29, [0] accept, compute, 18.31s
config 431=[ 4.50 21.00] log(rel.dens)=-1.96, [1] accept, compute, 17.53s
config 432=[ 0.00 21.75] log(rel.dens)=-5.47, [3] accept, compute, 17.26s
config 433=[ 0.75 21.75] log(rel.dens)=-3.98, [2] accept, compute, 17.40s
config 434=[ 1.50 21.75] log(rel.dens)=-2.97, [0] accept, compute, 10.87s
config 435=[ 2.25 21.75] log(rel.dens)=-2.42, [1] accept, compute, 10.23s
config 436=[ 0.00 22.50] log(rel.dens)=-7.52, reject, 0.31s
config 437=[ 3.00 21.75] log(rel.dens)=-2.31, [3] accept, compute, 10.46s
config 438=[ 3.75 21.75] log(rel.dens)=-2.60, [2] accept, compute, 9.77s
config 439=[ 4.50 21.75] log(rel.dens)=-3.26, [0] accept, compute, 6.65s
Combine the densities with relative weights:
config 0/425=[ 0.00 0.00] weight = 0.077 adjusted weight = 0.002 neff = 411.77
config 1/425=[ -0.75 0.00] weight = 0.061 adjusted weight = 0.001 neff = 436.86
config 2/425=[ 0.00 -0.75] weight = 0.074 adjusted weight = 0.001 neff = 409.73
config 3/425=[ 0.75 0.00] weight = 0.067 adjusted weight = 0.001 neff = 387.55
config 4/425=[ 0.00 0.75] weight = 0.087 adjusted weight = 0.002 neff = 413.96
config 5/425=[ -0.75 0.75] weight = 0.068 adjusted weight = 0.001 neff = 439.19
config 6/425=[ -0.75 -0.75] weight = 0.058 adjusted weight = 0.001 neff = 434.72
config 7/425=[ 0.75 -0.75] weight = 0.059 adjusted weight = 0.001 neff = 385.79
config 8/425=[ -1.50 0.00] weight = 0.031 adjusted weight = 0.001 neff = 462.83
config 9/425=[ 0.00 -1.50] weight = 0.068 adjusted weight = 0.001 neff = 408.13
config 10/425=[ 0.75 0.75] weight = 0.070 adjusted weight = 0.001 neff = 389.76
config 11/425=[ 1.50 0.00] weight = 0.036 adjusted weight = 0.001 neff = 364.47
config 12/425=[ 0.75 -1.50] weight = 0.050 adjusted weight = 0.001 neff = 384.49
config 13/425=[ -0.75 1.50] weight = 0.071 adjusted weight = 0.001 neff = 441.87
config 14/425=[ 0.00 1.50] weight = 0.095 adjusted weight = 0.002 neff = 416.47
config 15/425=[ -0.75 -1.50] weight = 0.059 adjusted weight = 0.001 neff = 432.79
config 16/425=[ 0.75 1.50] weight = 0.078 adjusted weight = 0.002 neff = 392.13
config 17/425=[ -1.50 -0.75] weight = 0.032 adjusted weight = 0.001 neff = 460.45
config 18/425=[ 1.50 -0.75] weight = 0.034 adjusted weight = 0.001 neff = 362.81
config 19/425=[ -1.50 0.75] weight = 0.034 adjusted weight = 0.001 neff = 465.25
config 20/425=[ 1.50 0.75] weight = 0.041 adjusted weight = 0.001 neff = 366.41
config 21/425=[ -1.50 -1.50] weight = 0.034 adjusted weight = 0.001 neff = 458.31
config 22/425=[ 1.50 1.50] weight = 0.050 adjusted weight = 0.001 neff = 368.51
config 23/425=[ 1.50 -1.50] weight = 0.029 adjusted weight = 0.001 neff = 361.65
config 24/425=[ -1.50 1.50] weight = 0.034 adjusted weight = 0.001 neff = 468.11
config 25/425=[ 2.25 0.00] weight = 0.015 adjusted weight = 0.000 neff = 342.35
config 26/425=[ 0.00 -2.25] weight = 0.060 adjusted weight = 0.001 neff = 406.99
config 27/425=[ -2.25 0.00] weight = 0.012 adjusted weight = 0.000 neff = 489.34
config 28/425=[ 2.25 0.75] weight = 0.019 adjusted weight = 0.000 neff = 343.91
config 29/425=[ -0.75 -2.25] weight = 0.050 adjusted weight = 0.001 neff = 431.55
config 30/425=[ 0.00 2.25] weight = 0.104 adjusted weight = 0.002 neff = 419.20
config 31/425=[ 0.75 -2.25] weight = 0.046 adjusted weight = 0.001 neff = 383.50
config 32/425=[ -2.25 -0.75] weight = 0.012 adjusted weight = 0.000 neff = 486.85
config 33/425=[ -0.75 2.25] weight = 0.066 adjusted weight = 0.001 neff = 444.91
config 34/425=[ 2.25 -0.75] weight = 0.014 adjusted weight = 0.000 neff = 340.83
config 35/425=[ -2.25 0.75] weight = 0.011 adjusted weight = 0.000 neff = 492.11
config 36/425=[ 0.75 2.25] weight = 0.097 adjusted weight = 0.002 neff = 394.55
config 37/425=[ -2.25 -1.50] weight = 0.013 adjusted weight = 0.000 neff = 484.61
config 38/425=[ 2.25 -1.50] weight = 0.012 adjusted weight = 0.000 neff = 339.88
config 39/425=[ -1.50 -2.25] weight = 0.033 adjusted weight = 0.001 neff = 456.72
config 40/425=[ 2.25 1.50] weight = 0.023 adjusted weight = 0.000 neff = 345.89
config 41/425=[ -1.50 2.25] weight = 0.029 adjusted weight = 0.001 neff = 471.37
config 42/425=[ 1.50 -2.25] weight = 0.023 adjusted weight = 0.000 neff = 361.04
config 43/425=[ -2.25 1.50] weight = 0.010 adjusted weight = 0.000 neff = 495.09
config 44/425=[ 1.50 2.25] weight = 0.057 adjusted weight = 0.001 neff = 370.96
config 45/425=[ 0.00 3.00] weight = 0.114 adjusted weight = 0.002 neff = 422.11
config 46/425=[ 3.00 0.00] weight = 0.005 adjusted weight = 0.000 neff = 321.03
config 47/425=[ 0.00 -3.00] weight = 0.052 adjusted weight = 0.001 neff = 406.40
config 48/425=[ -3.00 0.00] weight = 0.002 adjusted weight = 0.000 neff = 516.73
config 49/425=[ -0.75 -3.00] weight = 0.048 adjusted weight = 0.001 neff = 430.58
config 50/425=[ -3.00 0.75] weight = 0.002 adjusted weight = 0.000 neff = 519.79
config 51/425=[ 3.00 0.75] weight = 0.006 adjusted weight = 0.000 neff = 322.55
config 52/425=[ -0.75 3.00] weight = 0.076 adjusted weight = 0.001 neff = 447.81
config 53/425=[ 0.75 -3.00] weight = 0.039 adjusted weight = 0.001 neff = 383.13
config 54/425=[ 0.75 3.00] weight = 0.110 adjusted weight = 0.002 neff = 397.31
config 55/425=[ 3.00 -0.75] weight = 0.004 adjusted weight = 0.000 neff = 319.89
config 56/425=[ 2.25 2.25] weight = 0.028 adjusted weight = 0.001 neff = 348.11
config 57/425=[ -3.00 -0.75] weight = 0.003 adjusted weight = 0.000 neff = 514.01
config 58/425=[ 2.25 -2.25] weight = 0.010 adjusted weight = 0.000 neff = 339.40
config 59/425=[ -2.25 -2.25] weight = 0.012 adjusted weight = 0.000 neff = 482.90
config 60/425=[ -2.25 2.25] weight = 0.009 adjusted weight = 0.000 neff = 498.32
config 61/425=[ -1.50 3.00] weight = 0.033 adjusted weight = 0.001 neff = 474.33
config 62/425=[ -3.00 -1.50] weight = 0.003 adjusted weight = 0.000 neff = 511.74
config 63/425=[ 1.50 -3.00] weight = 0.021 adjusted weight = 0.000 neff = 360.85
config 64/425=[ 3.00 1.50] weight = 0.007 adjusted weight = 0.000 neff = 324.42
config 65/425=[ 1.50 3.00] weight = 0.074 adjusted weight = 0.001 neff = 373.42
config 66/425=[ -3.00 1.50] weight = 0.002 adjusted weight = 0.000 neff = 522.91
config 67/425=[ -1.50 -3.00] weight = 0.030 adjusted weight = 0.001 neff = 455.65
config 68/425=[ 3.00 -1.50] weight = 0.004 adjusted weight = 0.000 neff = 319.11
config 69/425=[ -2.25 -3.00] weight = 0.012 adjusted weight = 0.000 neff = 481.53
config 70/425=[ 2.25 -3.00] weight = 0.008 adjusted weight = 0.000 neff = 339.62
config 71/425=[ 0.00 -3.75] weight = 0.043 adjusted weight = 0.001 neff = 406.46
config 72/425=[ -3.00 2.25] weight = 0.001 adjusted weight = 0.000 neff = 526.27
config 73/425=[ 3.00 -2.25] weight = 0.003 adjusted weight = 0.000 neff = 318.91
config 74/425=[ 3.00 2.25] weight = 0.009 adjusted weight = 0.000 neff = 326.40
config 75/425=[ -3.00 -2.25] weight = 0.003 adjusted weight = 0.000 neff = 509.66
config 76/425=[ 2.25 3.00] weight = 0.034 adjusted weight = 0.001 neff = 350.60
config 77/425=[ 0.00 3.75] weight = 0.124 adjusted weight = 0.002 neff = 425.18
config 78/425=[ -2.25 3.00] weight = 0.008 adjusted weight = 0.000 neff = 501.70
config 79/425=[ 3.75 0.00] weight = 0.001 adjusted weight = 0.000 neff = 301.03
config 80/425=[ -0.75 3.75] weight = 0.072 adjusted weight = 0.001 neff = 451.16
config 81/425=[ -3.75 0.00] weight = 0.000 adjusted weight = 0.000 neff = 544.81
config 82/425=[ 0.75 -3.75] weight = 0.031 adjusted weight = 0.001 neff = 383.49
config 83/425=[ 3.75 0.75] weight = 0.001 adjusted weight = 0.000 neff = 302.23
config 84/425=[ 0.75 3.75] weight = 0.126 adjusted weight = 0.002 neff = 400.23
config 85/425=[ 3.75 -0.75] weight = 0.001 adjusted weight = 0.000 neff = 299.96
config 86/425=[ -3.75 -0.75] weight = 0.000 adjusted weight = 0.000 neff = 541.89
config 87/425=[ -3.75 0.75] weight = 0.000 adjusted weight = 0.000 neff = 547.70
config 88/425=[ -0.75 -3.75] weight = 0.040 adjusted weight = 0.001 neff = 430.38
config 89/425=[ -1.50 3.75] weight = 0.030 adjusted weight = 0.001 neff = 477.78
config 90/425=[ 3.75 1.50] weight = 0.002 adjusted weight = 0.000 neff = 303.85
config 91/425=[ -1.50 -3.75] weight = 0.026 adjusted weight = 0.000 neff = 455.18
config 92/425=[ 1.50 3.75] weight = 0.090 adjusted weight = 0.002 neff = 376.16
config 93/425=[ 1.50 -3.75] weight = 0.017 adjusted weight = 0.000 neff = 361.43
config 94/425=[ -3.75 -1.50] weight = 0.000 adjusted weight = 0.000 neff = 539.28
config 95/425=[ 3.75 -1.50] weight = 0.001 adjusted weight = 0.000 neff = 299.38
config 96/425=[ -3.00 -3.00] weight = 0.003 adjusted weight = 0.000 neff = 508.16
config 97/425=[ 3.00 -3.00] weight = 0.002 adjusted weight = 0.000 neff = 319.45
config 98/425=[ 3.00 3.00] weight = 0.011 adjusted weight = 0.000 neff = 328.79
config 99/425=[ -3.00 3.00] weight = 0.001 adjusted weight = 0.000 neff = 529.48
config 100/425=[ 2.25 -3.75] weight = 0.007 adjusted weight = 0.000 neff = 340.44
config 101/425=[ -2.25 -3.75] weight = 0.010 adjusted weight = 0.000 neff = 480.86
config 102/425=[ 2.25 3.75] weight = 0.044 adjusted weight = 0.001 neff = 353.10
config 103/425=[ 3.75 -2.25] weight = 0.001 adjusted weight = 0.000 neff = 299.55
config 104/425=[ 3.75 2.25] weight = 0.002 adjusted weight = 0.000 neff = 305.73
config 105/425=[ -3.75 -2.25] weight = 0.000 adjusted weight = 0.000 neff = 537.09
config 106/425=[ -2.25 3.75] weight = 0.008 adjusted weight = 0.000 neff = 505.09
config 107/425=[ 0.00 4.50] weight = 0.136 adjusted weight = 0.003 neff = 428.36
config 108/425=[ 0.00 -4.50] weight = 0.032 adjusted weight = 0.001 neff = 407.34
config 109/425=[ 4.50 0.00] weight = 0.000 adjusted weight = 0.000 neff = 281.79
config 110/425=[ 0.75 -4.50] weight = 0.024 adjusted weight = 0.000 neff = 384.61
config 111/425=[ -0.75 4.50] weight = 0.077 adjusted weight = 0.002 neff = 454.43
config 112/425=[ 0.75 4.50] weight = 0.151 adjusted weight = 0.003 neff = 403.21
config 113/425=[ -0.75 -4.50] weight = 0.030 adjusted weight = 0.001 neff = 431.01
config 114/425=[ -1.50 4.50] weight = 0.028 adjusted weight = 0.001 neff = 481.26
config 115/425=[ 4.50 0.75] weight = 0.000 adjusted weight = 0.000 neff = 282.95
config 116/425=[ -1.50 -4.50] weight = 0.020 adjusted weight = 0.000 neff = 455.45
config 117/425=[ 1.50 4.50] weight = 0.111 adjusted weight = 0.002 neff = 379.03
config 118/425=[ 4.50 1.50] weight = 0.000 adjusted weight = 0.000 neff = 284.49
config 119/425=[ 1.50 -4.50] weight = 0.013 adjusted weight = 0.000 neff = 362.87
config 120/425=[ 3.75 -3.00] weight = 0.001 adjusted weight = 0.000 neff = 299.99
config 121/425=[ -3.00 -3.75] weight = 0.003 adjusted weight = 0.000 neff = 507.17
config 122/425=[ -3.00 3.75] weight = 0.001 adjusted weight = 0.000 neff = 533.17
config 123/425=[ 3.00 3.75] weight = 0.016 adjusted weight = 0.000 neff = 331.06
config 124/425=[ 3.75 3.00] weight = 0.003 adjusted weight = 0.000 neff = 307.80
config 125/425=[ 3.00 -3.75] weight = 0.002 adjusted weight = 0.000 neff = 320.42
config 126/425=[ 2.25 -4.50] weight = 0.005 adjusted weight = 0.000 neff = 342.10
config 127/425=[ -3.75 -3.00] weight = 0.000 adjusted weight = 0.000 neff = 535.35
config 128/425=[ -2.25 -4.50] weight = 0.008 adjusted weight = 0.000 neff = 480.89
config 129/425=[ -2.25 4.50] weight = 0.007 adjusted weight = 0.000 neff = 508.77
config 130/425=[ 4.50 2.25] weight = 0.000 adjusted weight = 0.000 neff = 286.09
config 131/425=[ 2.25 4.50] weight = 0.057 adjusted weight = 0.001 neff = 355.82
config 132/425=[ 0.00 5.25] weight = 0.155 adjusted weight = 0.003 neff = 431.60
config 133/425=[ 0.00 -5.25] weight = 0.022 adjusted weight = 0.000 neff = 409.19
config 134/425=[ -0.75 -5.25] weight = 0.021 adjusted weight = 0.000 neff = 432.50
config 135/425=[ 3.75 3.75] weight = 0.004 adjusted weight = 0.000 neff = 310.05
config 136/425=[ -0.75 5.25] weight = 0.079 adjusted weight = 0.002 neff = 457.87
config 137/425=[ -3.75 -3.75] weight = 0.000 adjusted weight = 0.000 neff = 534.15
config 138/425=[ 0.75 -5.25] weight = 0.017 adjusted weight = 0.000 neff = 386.74
config 139/425=[ 0.75 5.25] weight = 0.177 adjusted weight = 0.003 neff = 406.34
config 140/425=[ 3.75 -3.75] weight = 0.000 adjusted weight = 0.000 neff = 301.36
config 141/425=[ -3.00 -4.50] weight = 0.002 adjusted weight = 0.000 neff = 507.04
config 142/425=[ 3.00 -4.50] weight = 0.002 adjusted weight = 0.000 neff = 322.33
config 143/425=[ -3.00 4.50] weight = 0.001 adjusted weight = 0.000 neff = 536.72
config 144/425=[ 3.00 4.50] weight = 0.021 adjusted weight = 0.000 neff = 333.61
config 145/425=[ 4.50 3.00] weight = 0.001 adjusted weight = 0.000 neff = 288.17
config 146/425=[ 1.50 5.25] weight = 0.136 adjusted weight = 0.003 neff = 382.01
config 147/425=[ -1.50 5.25] weight = 0.032 adjusted weight = 0.001 neff = 484.61
config 148/425=[ -1.50 -5.25] weight = 0.014 adjusted weight = 0.000 neff = 456.65
config 149/425=[ 1.50 -5.25] weight = 0.010 adjusted weight = 0.000 neff = 365.32
config 150/425=[ 2.25 5.25] weight = 0.068 adjusted weight = 0.001 neff = 358.74
config 151/425=[ -2.25 5.25] weight = 0.006 adjusted weight = 0.000 neff = 512.41
config 152/425=[ -2.25 -5.25] weight = 0.006 adjusted weight = 0.000 neff = 481.75
config 153/425=[ 2.25 -5.25] weight = 0.004 adjusted weight = 0.000 neff = 344.93
config 154/425=[ 4.50 3.75] weight = 0.001 adjusted weight = 0.000 neff = 290.08
config 155/425=[ -3.75 -4.50] weight = 0.000 adjusted weight = 0.000 neff = 533.55
config 156/425=[ 3.75 4.50] weight = 0.005 adjusted weight = 0.000 neff = 312.52
config 157/425=[ 3.75 -4.50] weight = 0.000 adjusted weight = 0.000 neff = 303.55
config 158/425=[ 0.00 -6.00] weight = 0.014 adjusted weight = 0.000 neff = 412.14
config 159/425=[ 0.00 6.00] weight = 0.171 adjusted weight = 0.003 neff = 434.96
config 160/425=[ 3.00 5.25] weight = 0.026 adjusted weight = 0.001 neff = 336.39
config 161/425=[ 0.75 -6.00] weight = 0.011 adjusted weight = 0.000 neff = 390.06
config 162/425=[ -3.00 5.25] weight = 0.001 adjusted weight = 0.000 neff = 540.48
config 163/425=[ -0.75 -6.00] weight = 0.013 adjusted weight = 0.000 neff = 435.04
config 164/425=[ 3.00 -5.25] weight = 0.001 adjusted weight = 0.000 neff = 325.39
config 165/425=[ -3.00 -5.25] weight = 0.002 adjusted weight = 0.000 neff = 507.36
config 166/425=[ 0.75 6.00] weight = 0.206 adjusted weight = 0.004 neff = 409.57
config 167/425=[ -0.75 6.00] weight = 0.092 adjusted weight = 0.002 neff = 461.20
config 168/425=[ 1.50 6.00] weight = 0.168 adjusted weight = 0.003 neff = 385.08
config 169/425=[ -1.50 -6.00] weight = 0.009 adjusted weight = 0.000 neff = 458.83
config 170/425=[ -1.50 6.00] weight = 0.031 adjusted weight = 0.001 neff = 488.21
config 171/425=[ 1.50 -6.00] weight = 0.006 adjusted weight = 0.000 neff = 369.01
config 172/425=[ 4.50 4.50] weight = 0.001 adjusted weight = 0.000 neff = 292.32
config 173/425=[ 2.25 -6.00] weight = 0.003 adjusted weight = 0.000 neff = 348.87
config 174/425=[ -2.25 -6.00] weight = 0.004 adjusted weight = 0.000 neff = 483.47
config 175/425=[ -2.25 6.00] weight = 0.006 adjusted weight = 0.000 neff = 516.02
config 176/425=[ 2.25 6.00] weight = 0.094 adjusted weight = 0.002 neff = 361.56
config 177/425=[ -3.75 -5.25] weight = 0.000 adjusted weight = 0.000 neff = 533.89
config 178/425=[ 3.75 -5.25] weight = 0.000 adjusted weight = 0.000 neff = 306.97
config 179/425=[ 3.75 5.25] weight = 0.007 adjusted weight = 0.000 neff = 315.06
config 180/425=[ -3.00 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 508.93
config 181/425=[ 3.00 6.00] weight = 0.034 adjusted weight = 0.001 neff = 339.19
config 182/425=[ 3.00 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 329.83
config 183/425=[ -3.00 6.00] weight = 0.001 adjusted weight = 0.000 neff = 544.20
config 184/425=[ 0.00 -6.75] weight = 0.008 adjusted weight = 0.000 neff = 416.42
config 185/425=[ 0.00 6.75] weight = 0.192 adjusted weight = 0.004 neff = 438.37
config 186/425=[ -0.75 6.75] weight = 0.092 adjusted weight = 0.002 neff = 464.82
config 187/425=[ 0.75 -6.75] weight = 0.006 adjusted weight = 0.000 neff = 394.89
config 188/425=[ -0.75 -6.75] weight = 0.007 adjusted weight = 0.000 neff = 439.06
config 189/425=[ 0.75 6.75] weight = 0.225 adjusted weight = 0.004 neff = 412.98
config 190/425=[ -1.50 6.75] weight = 0.027 adjusted weight = 0.001 neff = 492.05
config 191/425=[ 4.50 5.25] weight = 0.002 adjusted weight = 0.000 neff = 294.69
config 192/425=[ 1.50 6.75] weight = 0.208 adjusted weight = 0.004 neff = 388.23
config 193/425=[ 1.50 -6.75] weight = 0.004 adjusted weight = 0.000 neff = 374.11
config 194/425=[ -1.50 -6.75] weight = 0.004 adjusted weight = 0.000 neff = 462.36
config 195/425=[ -3.75 -6.00] weight = 0.000 adjusted weight = 0.000 neff = 534.88
config 196/425=[ 3.75 6.00] weight = 0.011 adjusted weight = 0.000 neff = 317.56
config 197/425=[ 3.75 -6.00] weight = 0.000 adjusted weight = 0.000 neff = 311.54
config 198/425=[ -2.25 -6.75] weight = 0.002 adjusted weight = 0.000 neff = 486.70
config 199/425=[ -2.25 6.75] weight = 0.006 adjusted weight = 0.000 neff = 519.68
config 200/425=[ 2.25 6.75] weight = 0.122 adjusted weight = 0.002 neff = 364.56
config 201/425=[ 2.25 -6.75] weight = 0.002 adjusted weight = 0.000 neff = 354.34
config 202/425=[ 3.00 6.75] weight = 0.049 adjusted weight = 0.001 neff = 341.97
config 203/425=[ -3.00 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 511.53
config 204/425=[ -3.00 6.75] weight = 0.001 adjusted weight = 0.000 neff = 548.17
config 205/425=[ 3.00 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 335.63
config 206/425=[ 0.00 7.50] weight = 0.213 adjusted weight = 0.004 neff = 441.85
config 207/425=[ 4.50 6.00] weight = 0.002 adjusted weight = 0.000 neff = 297.32
config 208/425=[ 0.00 -7.50] weight = 0.003 adjusted weight = 0.000 neff = 422.46
config 209/425=[ -0.75 -7.50] weight = 0.003 adjusted weight = 0.000 neff = 444.45
config 210/425=[ -0.75 7.50] weight = 0.091 adjusted weight = 0.002 neff = 468.50
config 211/425=[ 0.75 -7.50] weight = 0.003 adjusted weight = 0.000 neff = 401.26
config 212/425=[ 0.75 7.50] weight = 0.287 adjusted weight = 0.006 neff = 416.20
config 213/425=[ 1.50 -7.50] weight = 0.002 adjusted weight = 0.000 neff = 380.92
config 214/425=[ 1.50 7.50] weight = 0.259 adjusted weight = 0.005 neff = 391.43
config 215/425=[ -1.50 -7.50] weight = 0.002 adjusted weight = 0.000 neff = 467.37
config 216/425=[ -1.50 7.50] weight = 0.030 adjusted weight = 0.001 neff = 495.58
config 217/425=[ 3.75 6.75] weight = 0.015 adjusted weight = 0.000 neff = 320.27
config 218/425=[ -2.25 7.50] weight = 0.005 adjusted weight = 0.000 neff = 523.51
config 219/425=[ 2.25 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 361.60
config 220/425=[ 2.25 7.50] weight = 0.157 adjusted weight = 0.003 neff = 367.64
config 221/425=[ -2.25 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 491.10
config 222/425=[ -3.00 7.50] weight = 0.001 adjusted weight = 0.000 neff = 552.15
config 223/425=[ -3.00 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 515.65
config 224/425=[ 3.00 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 343.24
config 225/425=[ 3.00 7.50] weight = 0.065 adjusted weight = 0.001 neff = 344.90
config 226/425=[ 4.50 6.75] weight = 0.004 adjusted weight = 0.000 neff = 299.66
config 227/425=[ 0.00 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 430.24
config 228/425=[ 0.00 8.25] weight = 0.226 adjusted weight = 0.004 neff = 445.44
config 229/425=[ 0.75 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 409.62
config 230/425=[ 0.75 8.25] weight = 0.334 adjusted weight = 0.007 neff = 419.61
config 231/425=[ -0.75 8.25] weight = 0.103 adjusted weight = 0.002 neff = 472.02
config 232/425=[ -0.75 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 451.84
config 233/425=[ 1.50 8.25] weight = 0.315 adjusted weight = 0.006 neff = 394.72
config 234/425=[ -1.50 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 474.25
config 235/425=[ 3.75 7.50] weight = 0.021 adjusted weight = 0.000 neff = 323.06
config 236/425=[ 1.50 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 389.78
config 237/425=[ -1.50 8.25] weight = 0.029 adjusted weight = 0.001 neff = 499.34
config 238/425=[ 2.25 8.25] weight = 0.199 adjusted weight = 0.004 neff = 370.80
config 239/425=[ -2.25 8.25] weight = 0.004 adjusted weight = 0.000 neff = 527.52
config 240/425=[ -2.25 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 497.40
config 241/425=[ 2.25 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 370.92
config 242/425=[ 4.50 7.50] weight = 0.005 adjusted weight = 0.000 neff = 302.27
config 243/425=[ 3.00 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 352.98
config 244/425=[ 3.00 8.25] weight = 0.087 adjusted weight = 0.002 neff = 347.90
config 245/425=[ -3.00 8.25] weight = 0.000 adjusted weight = 0.000 neff = 555.84
config 246/425=[ 0.00 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 440.36
config 247/425=[ 0.00 9.00] weight = 0.245 adjusted weight = 0.005 neff = 449.03
config 248/425=[ 0.75 9.00] weight = 0.393 adjusted weight = 0.008 neff = 423.04
config 249/425=[ -0.75 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 461.33
config 250/425=[ -0.75 9.00] weight = 0.105 adjusted weight = 0.002 neff = 475.71
config 251/425=[ 0.75 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 420.31
config 252/425=[ 3.75 8.25] weight = 0.031 adjusted weight = 0.001 neff = 325.86
config 253/425=[ -1.50 9.00] weight = 0.027 adjusted weight = 0.001 neff = 503.16
config 254/425=[ 1.50 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 401.02
config 255/425=[ 1.50 9.00] weight = 0.383 adjusted weight = 0.007 neff = 398.05
config 256/425=[ -2.25 9.00] weight = 0.004 adjusted weight = 0.000 neff = 531.40
config 257/425=[ 2.25 9.00] weight = 0.262 adjusted weight = 0.005 neff = 373.94
config 258/425=[ 4.50 8.25] weight = 0.007 adjusted weight = 0.000 neff = 305.00
config 259/425=[ -3.00 9.00] weight = 0.000 adjusted weight = 0.000 neff = 559.87
config 260/425=[ 3.00 9.00] weight = 0.120 adjusted weight = 0.002 neff = 350.90
config 261/425=[ 0.00 9.75] weight = 0.279 adjusted weight = 0.005 neff = 452.56
config 262/425=[ -0.75 9.75] weight = 0.105 adjusted weight = 0.002 neff = 479.45
config 263/425=[ 3.75 9.00] weight = 0.038 adjusted weight = 0.001 neff = 328.93
config 264/425=[ 0.75 9.75] weight = 0.450 adjusted weight = 0.009 neff = 426.53
config 265/425=[ -1.50 9.75] weight = 0.027 adjusted weight = 0.001 neff = 506.94
config 266/425=[ 1.50 9.75] weight = 0.475 adjusted weight = 0.009 neff = 401.37
config 267/425=[ 2.25 9.75] weight = 0.338 adjusted weight = 0.007 neff = 377.14
config 268/425=[ -2.25 9.75] weight = 0.004 adjusted weight = 0.000 neff = 535.11
config 269/425=[ 4.50 9.00] weight = 0.010 adjusted weight = 0.000 neff = 307.79
config 270/425=[ 3.00 9.75] weight = 0.168 adjusted weight = 0.003 neff = 353.89
config 271/425=[ -3.00 9.75] weight = 0.000 adjusted weight = 0.000 neff = 563.91
config 272/425=[ 3.75 9.75] weight = 0.056 adjusted weight = 0.001 neff = 331.78
config 273/425=[ 0.00 10.50] weight = 0.286 adjusted weight = 0.006 neff = 456.26
config 274/425=[ -0.75 10.50] weight = 0.107 adjusted weight = 0.002 neff = 483.17
config 275/425=[ 0.75 10.50] weight = 0.501 adjusted weight = 0.010 neff = 430.08
config 276/425=[ -1.50 10.50] weight = 0.023 adjusted weight = 0.000 neff = 510.90
config 277/425=[ 1.50 10.50] weight = 0.569 adjusted weight = 0.011 neff = 404.76
config 278/425=[ 4.50 9.75] weight = 0.015 adjusted weight = 0.000 neff = 310.52
config 279/425=[ 2.25 10.50] weight = 0.426 adjusted weight = 0.008 neff = 380.40
config 280/425=[ -2.25 10.50] weight = 0.003 adjusted weight = 0.000 neff = 539.24
config 281/425=[ -3.00 10.50] weight = 0.000 adjusted weight = 0.000 neff = 567.84
config 282/425=[ 3.00 10.50] weight = 0.222 adjusted weight = 0.004 neff = 357.01
config 283/425=[ 3.75 10.50] weight = 0.083 adjusted weight = 0.002 neff = 334.63
config 284/425=[ 0.00 11.25] weight = 0.310 adjusted weight = 0.006 neff = 459.88
config 285/425=[ -0.75 11.25] weight = 0.107 adjusted weight = 0.002 neff = 486.93
config 286/425=[ 0.75 11.25] weight = 0.565 adjusted weight = 0.011 neff = 433.61
config 287/425=[ 1.50 11.25] weight = 0.668 adjusted weight = 0.013 neff = 408.19
config 288/425=[ -1.50 11.25] weight = 0.023 adjusted weight = 0.000 neff = 514.66
config 289/425=[ 4.50 10.50] weight = 0.022 adjusted weight = 0.000 neff = 313.34
config 290/425=[ -2.25 11.25] weight = 0.003 adjusted weight = 0.000 neff = 542.99
config 291/425=[ 2.25 11.25] weight = 0.489 adjusted weight = 0.010 neff = 383.81
config 292/425=[ -3.00 11.25] weight = 0.000 adjusted weight = 0.000 neff = 571.77
config 293/425=[ 3.00 11.25] weight = 0.288 adjusted weight = 0.006 neff = 360.16
config 294/425=[ 3.75 11.25] weight = 0.104 adjusted weight = 0.002 neff = 337.76
config 295/425=[ 0.00 12.00] weight = 0.316 adjusted weight = 0.006 neff = 463.58
config 296/425=[ -0.75 12.00] weight = 0.102 adjusted weight = 0.002 neff = 490.73
config 297/425=[ 0.75 12.00] weight = 0.614 adjusted weight = 0.012 neff = 437.19
config 298/425=[ -1.50 12.00] weight = 0.018 adjusted weight = 0.000 neff = 518.67
config 299/425=[ 1.50 12.00] weight = 0.770 adjusted weight = 0.015 neff = 411.65
config 300/425=[ 4.50 11.25] weight = 0.031 adjusted weight = 0.001 neff = 316.20
config 301/425=[ -2.25 12.00] weight = 0.002 adjusted weight = 0.000 neff = 546.96
config 302/425=[ 2.25 12.00] weight = 0.632 adjusted weight = 0.012 neff = 387.04
config 303/425=[ 3.00 12.00] weight = 0.367 adjusted weight = 0.007 neff = 363.34
config 304/425=[ 3.75 12.00] weight = 0.130 adjusted weight = 0.003 neff = 340.90
config 305/425=[ 0.00 12.75] weight = 0.314 adjusted weight = 0.006 neff = 467.30
config 306/425=[ 0.75 12.75] weight = 0.650 adjusted weight = 0.013 neff = 440.80
config 307/425=[ -0.75 12.75] weight = 0.093 adjusted weight = 0.002 neff = 494.58
config 308/425=[ 4.50 12.00] weight = 0.042 adjusted weight = 0.001 neff = 319.12
config 309/425=[ -1.50 12.75] weight = 0.017 adjusted weight = 0.000 neff = 522.46
config 310/425=[ 1.50 12.75] weight = 0.787 adjusted weight = 0.015 neff = 415.27
config 311/425=[ -2.25 12.75] weight = 0.002 adjusted weight = 0.000 neff = 550.93
config 312/425=[ 2.25 12.75] weight = 0.758 adjusted weight = 0.015 neff = 390.37
config 313/425=[ 3.00 12.75] weight = 0.443 adjusted weight = 0.009 neff = 366.60
config 314/425=[ 3.75 12.75] weight = 0.194 adjusted weight = 0.004 neff = 343.75
config 315/425=[ 0.00 13.50] weight = 0.301 adjusted weight = 0.006 neff = 471.04
config 316/425=[ 4.50 12.75] weight = 0.060 adjusted weight = 0.001 neff = 321.96
config 317/425=[ 0.75 13.50] weight = 0.664 adjusted weight = 0.013 neff = 444.43
config 318/425=[ -0.75 13.50] weight = 0.081 adjusted weight = 0.002 neff = 498.46
config 319/425=[ 1.50 13.50] weight = 0.937 adjusted weight = 0.018 neff = 418.64
config 320/425=[ -1.50 13.50] weight = 0.013 adjusted weight = 0.000 neff = 526.60
config 321/425=[ -2.25 13.50] weight = 0.001 adjusted weight = 0.000 neff = 554.95
config 322/425=[ 2.25 13.50] weight = 0.864 adjusted weight = 0.017 neff = 393.75
config 323/425=[ 3.00 13.50] weight = 0.550 adjusted weight = 0.011 neff = 369.80
config 324/425=[ 3.75 13.50] weight = 0.233 adjusted weight = 0.005 neff = 346.92
config 325/425=[ 4.50 13.50] weight = 0.070 adjusted weight = 0.001 neff = 325.10
config 326/425=[ 0.00 14.25] weight = 0.277 adjusted weight = 0.005 neff = 474.81
config 327/425=[ -0.75 14.25] weight = 0.072 adjusted weight = 0.001 neff = 502.29
config 328/425=[ 0.75 14.25] weight = 0.648 adjusted weight = 0.013 neff = 448.09
config 329/425=[ -1.50 14.25] weight = 0.010 adjusted weight = 0.000 neff = 530.55
config 330/425=[ 1.50 14.25] weight = 0.977 adjusted weight = 0.019 neff = 422.17
config 331/425=[ 2.25 14.25] weight = 0.952 adjusted weight = 0.019 neff = 397.16
config 332/425=[ -2.25 14.25] weight = 0.001 adjusted weight = 0.000 neff = 558.96
config 333/425=[ 3.00 14.25] weight = 0.618 adjusted weight = 0.012 neff = 373.11
config 334/425=[ 3.75 14.25] weight = 0.297 adjusted weight = 0.006 neff = 349.97
config 335/425=[ 4.50 14.25] weight = 0.100 adjusted weight = 0.002 neff = 327.89
config 336/425=[ 0.00 15.00] weight = 0.243 adjusted weight = 0.005 neff = 478.59
config 337/425=[ 0.75 15.00] weight = 0.609 adjusted weight = 0.012 neff = 451.76
config 338/425=[ -0.75 15.00] weight = 0.057 adjusted weight = 0.001 neff = 506.20
config 339/425=[ 1.50 15.00] weight = 0.964 adjusted weight = 0.019 neff = 425.74
config 340/425=[ -1.50 15.00] weight = 0.009 adjusted weight = 0.000 neff = 534.29
config 341/425=[ -2.25 15.00] weight = 0.001 adjusted weight = 0.000 neff = 562.98
config 342/425=[ 2.25 15.00] weight = 1.000 adjusted weight = 0.020 neff = 400.58
config 343/425=[ 3.00 15.00] weight = 0.704 adjusted weight = 0.014 neff = 376.36
config 344/425=[ 3.75 15.00] weight = 0.327 adjusted weight = 0.006 neff = 353.20
config 345/425=[ 0.00 15.75] weight = 0.201 adjusted weight = 0.004 neff = 482.39
config 346/425=[ 4.50 15.00] weight = 0.107 adjusted weight = 0.002 neff = 331.10
config 347/425=[ -0.75 15.75] weight = 0.045 adjusted weight = 0.001 neff = 510.06
config 348/425=[ 0.75 15.75] weight = 0.533 adjusted weight = 0.010 neff = 455.46
config 349/425=[ -1.50 15.75] weight = 0.006 adjusted weight = 0.000 neff = 538.27
config 350/425=[ 1.50 15.75] weight = 0.901 adjusted weight = 0.018 neff = 429.31
config 351/425=[ 2.25 15.75] weight = 0.989 adjusted weight = 0.019 neff = 404.03
config 352/425=[ -2.25 15.75] weight = 0.001 adjusted weight = 0.000 neff = 567.01
config 353/425=[ 3.00 15.75] weight = 0.711 adjusted weight = 0.014 neff = 379.72
config 354/425=[ 3.75 15.75] weight = 0.375 adjusted weight = 0.007 neff = 356.29
config 355/425=[ 4.50 15.75] weight = 0.138 adjusted weight = 0.003 neff = 333.92
config 356/425=[ 0.00 16.50] weight = 0.154 adjusted weight = 0.003 neff = 486.20
config 357/425=[ 0.75 16.50] weight = 0.438 adjusted weight = 0.009 neff = 459.16
config 358/425=[ -0.75 16.50] weight = 0.032 adjusted weight = 0.001 neff = 514.00
config 359/425=[ 1.50 16.50] weight = 0.783 adjusted weight = 0.015 neff = 432.91
config 360/425=[ -1.50 16.50] weight = 0.004 adjusted weight = 0.000 neff = 542.25
config 361/425=[ 2.25 16.50] weight = 0.909 adjusted weight = 0.018 neff = 407.50
config 362/425=[ -2.25 16.50] weight = 0.000 adjusted weight = 0.000 neff = 571.06
config 363/425=[ 3.00 16.50] weight = 0.711 adjusted weight = 0.014 neff = 383.01
config 364/425=[ 3.75 16.50] weight = 0.362 adjusted weight = 0.007 neff = 359.57
config 365/425=[ 4.50 16.50] weight = 0.146 adjusted weight = 0.003 neff = 336.98
config 366/425=[ 0.00 17.25] weight = 0.107 adjusted weight = 0.002 neff = 490.03
config 367/425=[ -0.75 17.25] weight = 0.021 adjusted weight = 0.000 neff = 517.89
config 368/425=[ 0.75 17.25] weight = 0.325 adjusted weight = 0.006 neff = 462.90
config 369/425=[ 1.50 17.25] weight = 0.620 adjusted weight = 0.012 neff = 436.52
config 370/425=[ -1.50 17.25] weight = 0.003 adjusted weight = 0.000 neff = 546.24
config 371/425=[ 2.25 17.25] weight = 0.763 adjusted weight = 0.015 neff = 410.99
config 372/425=[ 3.00 17.25] weight = 0.590 adjusted weight = 0.012 neff = 386.47
config 373/425=[ 3.75 17.25] weight = 0.353 adjusted weight = 0.007 neff = 362.71
config 374/425=[ 4.50 17.25] weight = 0.131 adjusted weight = 0.003 neff = 340.19
config 375/425=[ 0.00 18.00] weight = 0.067 adjusted weight = 0.001 neff = 493.88
config 376/425=[ 0.75 18.00] weight = 0.218 adjusted weight = 0.004 neff = 466.64
config 377/425=[ -0.75 18.00] weight = 0.012 adjusted weight = 0.000 neff = 521.86
config 378/425=[ -1.50 18.00] weight = 0.001 adjusted weight = 0.000 neff = 550.48
config 379/425=[ 1.50 18.00] weight = 0.442 adjusted weight = 0.009 neff = 440.14
config 380/425=[ 2.25 18.00] weight = 0.576 adjusted weight = 0.011 neff = 414.49
config 381/425=[ 3.75 18.00] weight = 0.278 adjusted weight = 0.005 neff = 366.04
config 382/425=[ 3.00 18.00] weight = 0.489 adjusted weight = 0.010 neff = 389.77
config 383/425=[ 4.50 18.00] weight = 0.122 adjusted weight = 0.002 neff = 343.16
config 384/425=[ 0.00 18.75] weight = 0.036 adjusted weight = 0.001 neff = 497.74
config 385/425=[ -0.75 18.75] weight = 0.006 adjusted weight = 0.000 neff = 525.80
config 386/425=[ 0.75 18.75] weight = 0.126 adjusted weight = 0.002 neff = 470.40
config 387/425=[ -1.50 18.75] weight = 0.001 adjusted weight = 0.000 neff = 554.50
config 388/425=[ 1.50 18.75] weight = 0.272 adjusted weight = 0.005 neff = 443.79
config 389/425=[ 2.25 18.75] weight = 0.373 adjusted weight = 0.007 neff = 418.03
config 390/425=[ 3.00 18.75] weight = 0.341 adjusted weight = 0.007 neff = 393.14
config 391/425=[ 3.75 18.75] weight = 0.200 adjusted weight = 0.004 neff = 369.30
config 392/425=[ 4.50 18.75] weight = 0.092 adjusted weight = 0.002 neff = 346.28
config 393/425=[ 0.00 19.50] weight = 0.017 adjusted weight = 0.000 neff = 501.61
config 394/425=[ -0.75 19.50] weight = 0.003 adjusted weight = 0.000 neff = 529.72
config 395/425=[ 0.75 19.50] weight = 0.061 adjusted weight = 0.001 neff = 474.18
config 396/425=[ -1.50 19.50] weight = 0.000 adjusted weight = 0.000 neff = 558.53
config 397/425=[ 1.50 19.50] weight = 0.141 adjusted weight = 0.003 neff = 447.46
config 398/425=[ 2.25 19.50] weight = 0.204 adjusted weight = 0.004 neff = 421.58
config 399/425=[ 3.00 19.50] weight = 0.197 adjusted weight = 0.004 neff = 396.56
config 400/425=[ 3.75 19.50] weight = 0.121 adjusted weight = 0.002 neff = 372.59
config 401/425=[ 4.50 19.50] weight = 0.058 adjusted weight = 0.001 neff = 349.42
config 402/425=[ 0.00 20.25] weight = 0.006 adjusted weight = 0.000 neff = 505.50
config 403/425=[ -0.75 20.25] weight = 0.001 adjusted weight = 0.000 neff = 533.69
config 404/425=[ 0.75 20.25] weight = 0.024 adjusted weight = 0.000 neff = 477.97
config 405/425=[ 1.50 20.25] weight = 0.058 adjusted weight = 0.001 neff = 451.16
config 406/425=[ 2.25 20.25] weight = 0.089 adjusted weight = 0.002 neff = 425.16
config 407/425=[ 3.00 20.25] weight = 0.090 adjusted weight = 0.002 neff = 400.02
config 408/425=[ 3.75 20.25] weight = 0.062 adjusted weight = 0.001 neff = 375.81
config 409/425=[ 0.00 21.00] weight = 0.002 adjusted weight = 0.000 neff = 509.40
config 410/425=[ 4.50 20.25] weight = 0.029 adjusted weight = 0.001 neff = 352.58
config 411/425=[ 0.75 21.00] weight = 0.007 adjusted weight = 0.000 neff = 481.77
config 412/425=[ -0.75 21.00] weight = 0.000 adjusted weight = 0.000 neff = 537.71
config 413/425=[ 2.25 21.00] weight = 0.030 adjusted weight = 0.001 neff = 428.72
config 414/425=[ 1.50 21.00] weight = 0.018 adjusted weight = 0.000 neff = 454.85
config 415/425=[ 3.00 21.00] weight = 0.032 adjusted weight = 0.001 neff = 403.46
config 416/425=[ 3.75 21.00] weight = 0.022 adjusted weight = 0.000 neff = 379.17
config 417/425=[ 4.50 21.00] weight = 0.011 adjusted weight = 0.000 neff = 355.76
config 418/425=[ 0.00 21.75] weight = 0.000 adjusted weight = 0.000 neff = 513.31
config 419/425=[ 0.75 21.75] weight = 0.002 adjusted weight = 0.000 neff = 485.59
config 420/425=[ 1.50 21.75] weight = 0.004 adjusted weight = 0.000 neff = 458.57
config 421/425=[ 2.25 21.75] weight = 0.007 adjusted weight = 0.000 neff = 432.32
config 422/425=[ 3.00 21.75] weight = 0.008 adjusted weight = 0.000 neff = 406.94
config 423/425=[ 3.75 21.75] weight = 0.006 adjusted weight = 0.000 neff = 382.47
config 424/425=[ 4.50 21.75] weight = 0.003 adjusted weight = 0.000 neff = 358.97
Done.
Expected effective number of parameters: 410.607(38.200), eqv.#replicates: 7.413
DIC:
Mean of Deviance................. 2341.64
Deviance at Mean................. 1996.21
Effective number of parameters... 345.429
DIC.............................. 2687.07
Marginal likelihood: Integration -1080.581767 Gaussian-approx -1082.390312
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d37e4cfa3b/Model.ini]
Preparations : 0.124 seconds
Approx inference: 1816.651 seconds [0.1|0.0|0.6|78.7|20.5]%
Output : 2.064 seconds
---------------------------------
Total : 1818.840 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a59ef03] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d311c823c0]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36aa31b5e]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d311c823c0]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 1, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37ee23007] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d35ae020ac]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32a115373]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d333bf5ca5]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d3265aecb6] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d31b6ab466] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d37a69a299] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d32d322998] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33848d156] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d334a781f8] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d36145dbc9] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d331609b03] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/data.files/filee1d33d60fb48] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fb9f1601d80
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1216.690849 fn= 1 theta= 3.990000 4.000000 range=[-1.937 2.612]
max.logdens= -1211.920063 fn= 5 theta= 3.053497 3.677305 range=[-1.939 2.690]
max.logdens= -1211.837795 fn= 6 theta= 3.043497 3.677305 range=[-1.939 2.690]
max.logdens= -1207.592730 fn= 11 theta= 2.627571 3.532092 range=[-1.940 2.732]
max.logdens= -1207.575085 fn= 12 theta= 2.627571 3.522092 range=[-1.940 2.734]
max.logdens= -1207.471600 fn= 14 theta= 2.617571 3.532092 range=[-1.940 2.732]
max.logdens= -1201.494403 fn= 16 theta= 2.222941 3.394140 range=[-1.941 2.777]
max.logdens= -1201.463147 fn= 17 theta= 2.222941 3.384140 range=[-1.941 2.780]
max.logdens= -1201.306115 fn= 19 theta= 2.212941 3.394140 range=[-1.941 2.777]
max.logdens= -1193.312301 fn= 21 theta= 1.838542 3.263086 range=[-1.940 2.828]
max.logdens= -1193.293346 fn= 22 theta= 1.838542 3.253086 range=[-1.940 2.831]
max.logdens= -1193.071536 fn= 23 theta= 1.828542 3.263086 range=[-1.940 2.829]
max.logdens= -1183.133338 fn= 26 theta= 1.473363 3.138584 range=[-1.936 2.892]
max.logdens= -1183.114483 fn= 27 theta= 1.473363 3.128584 range=[-1.936 2.895]
max.logdens= -1182.828914 fn= 29 theta= 1.463363 3.138584 range=[-1.936 2.893]
max.logdens= -1171.617357 fn= 31 theta= 1.126444 3.020307 range=[-1.928 2.969]
max.logdens= -1171.599847 fn= 32 theta= 1.126444 3.010307 range=[-1.928 2.972]
max.logdens= -1171.273251 fn= 34 theta= 1.116444 3.020307 range=[-1.927 2.971]
max.logdens= -1160.128535 fn= 36 theta= 0.796870 2.907945 range=[-1.919 3.268]
max.logdens= -1160.114488 fn= 37 theta= 0.796870 2.897945 range=[-1.919 3.268]
max.logdens= -1159.791837 fn= 39 theta= 0.786870 2.907945 range=[-1.918 3.280]
max.logdens= -1150.368606 fn= 41 theta= 0.483775 2.801200 range=[-1.917 3.623]
max.logdens= -1150.360209 fn= 42 theta= 0.483775 2.791200 range=[-1.917 3.623]
max.logdens= -1150.098005 fn= 43 theta= 0.473775 2.801200 range=[-1.917 3.633]
max.logdens= -1143.946938 fn= 46 theta= 0.186335 2.699793 range=[-1.929 3.898]
max.logdens= -1143.944378 fn= 47 theta= 0.186335 2.689793 range=[-1.929 3.898]
max.logdens= -1143.800268 fn= 48 theta= 0.176335 2.699793 range=[-1.930 3.907]
max.logdens= -1142.120932 fn= 51 theta= -0.096234 2.603455 range=[-1.959 4.119]
max.logdens= -1142.094595 fn= 54 theta= -0.086234 2.603455 range=[-1.957 4.112]
max.logdens= -1142.085337 fn= 56 theta= -0.056248 2.617088 range=[-1.953 4.090]
max.logdens= -1142.067937 fn= 57 theta= -0.056248 2.607088 range=[-1.953 4.090]
max.logdens= -1142.065806 fn= 58 theta= -0.066248 2.617088 range=[-1.955 4.097]
max.logdens= -1142.061627 fn= 60 theta= -0.056248 2.627088 range=[-1.953 4.090]
Iter=1 |grad|=0.322 |x-x.old|=3.03 |f-f.old|=74.6
max.logdens= -1142.061363 fn= 62 theta= -0.076775 2.698729 range=[-1.955 4.105]
max.logdens= -1142.052756 fn= 64 theta= -0.066775 2.698729 range=[-1.954 4.097]
max.logdens= -1142.046430 fn= 69 theta= -0.076980 2.699543 range=[-1.955 4.105]
Iter=2 |grad|=1.27 |x-x.old|=0.0601 |f-f.old|=0.0254 Reached numerical limit!
Number of function evaluations = 83
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
98.601711 5.059841
5.059841 12.902379
Eigenvectors of the Hessian
0.998274 -0.058736
0.058736 0.998274
Eigenvalues of the Hessian
98.899419
12.604671
StDev/Correlation matrix (scaled inverse Hessian)
0.101735 -0.141860
0.281242
max.logdens= -1141.999065 fn= 93 theta= -0.110068 3.261902 range=[-1.957 4.127]
Compute corrected stdev for theta[0]: negative 1.073859 positive 1.367810
Compute corrected stdev for theta[1]: negative 4.376683 positive 1.000000
config 0=[ 0.00 0.00] log(rel.dens)=-0.05, [3] accept, compute, 11.07s
config 1=[ -0.75 0.00] log(rel.dens)=-0.36, [1] accept, compute, 11.16s
config 2=[ 0.75 0.00] log(rel.dens)=-0.10, [0] accept, compute, 11.38s
config 3=[ 0.00 -0.75] log(rel.dens)=-0.02, [2] accept, compute, 11.40s
config 4=[ 0.00 0.75] log(rel.dens)= 0.03, [3] accept, compute, 10.19s
config 5=[ -0.75 0.75] log(rel.dens)=-0.31, [1] accept, compute, 10.24s
config 6=[ 0.75 -0.75] log(rel.dens)=-0.23, [2] accept, compute, 10.19s
config 7=[ -0.75 -0.75] log(rel.dens)=-0.27, [0] accept, compute, 10.34s
config 8=[ 0.75 0.75] log(rel.dens)=-0.11, [3] accept, compute, 10.57s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.04, [1] accept, compute, 10.82s
config 10=[ -1.50 0.00] log(rel.dens)=-1.01, [2] accept, compute, 10.91s
config 11=[ 1.50 0.00] log(rel.dens)=-0.56, [0] accept, compute, 11.14s
config 12=[ 0.00 1.50] log(rel.dens)=-0.04, [3] accept, compute, 10.31s
config 13=[ -0.75 1.50] log(rel.dens)=-0.32, [1] accept, compute, 10.42s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.20, [2] accept, compute, 10.29s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.26, [0] accept, compute, 10.36s
config 16=[ 0.75 1.50] log(rel.dens)=-0.03, [3] accept, compute, 11.51s
config 17=[ -1.50 -0.75] log(rel.dens)=-1.03, [1] accept, compute, 11.80s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.71, [2] accept, compute, 11.69s
config 19=[ -1.50 0.75] log(rel.dens)=-1.07, [0] accept, compute, 12.01s
config 20=[ 1.50 0.75] log(rel.dens)=-0.56, [3] accept, compute, 10.51s
config 21=[ 1.50 1.50] log(rel.dens)=-0.39, [2] accept, compute, 10.58s
config 22=[ -1.50 -1.50] log(rel.dens)=-0.90, [1] accept, compute, 10.66s
config 23=[ 1.50 -1.50] log(rel.dens)=-0.71, [0] accept, compute, 10.64s
config 24=[ -1.50 1.50] log(rel.dens)=-1.14, [3] accept, compute, 10.27s
max.logdens= -1141.950421 fn= 126 theta= -0.114204 3.332197 range=[-1.957 4.130]
config 25=[ 0.00 -2.25] log(rel.dens)=-0.05, [2] accept, compute, 10.24s
config 26=[ 2.25 0.00] log(rel.dens)=-1.38, [1] accept, compute, 10.23s
config 27=[ -2.25 0.00] log(rel.dens)=-2.19, [0] accept, compute, 10.21s
config 28=[ 0.00 2.25] log(rel.dens)= 0.11, [3] accept, compute, 109.58s
config 29=[ -0.75 -2.25] log(rel.dens)=-0.26, [1] accept, compute, 109.36s
config 30=[ 2.25 0.75] log(rel.dens)=-1.24, [2] accept, compute, 109.91s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.24, [0] accept, compute, 110.38s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.06, [3] accept, compute, 20.16s
max.logdens= -1141.926112 fn= 134 theta= -0.038918 3.336627 range=[-1.947 4.075]
config 33=[ 2.25 -0.75] log(rel.dens)=-1.47, [1] accept, compute, 20.44s
config 34=[ -0.75 2.25] log(rel.dens)=-0.33, [2] accept, compute, 21.48s
config 35=[ -2.25 0.75] log(rel.dens)=-2.30, [0] accept, compute, 20.73s
config 36=[ 0.75 2.25] log(rel.dens)= 0.14, [3] accept, compute, 19.18s
config 37=[ -2.25 -1.50] log(rel.dens)=-1.99, [1] accept, compute, 19.06s
config 38=[ 2.25 -1.50] log(rel.dens)=-1.55, [2] accept, compute, 18.53s
config 39=[ -1.50 -2.25] log(rel.dens)=-0.85, [0] accept, compute, 19.04s
config 40=[ 2.25 1.50] log(rel.dens)=-1.09, [3] accept, compute, 32.26s
config 41=[ -1.50 2.25] log(rel.dens)=-1.33, [1] accept, compute, 33.20s
max.logdens= -1141.898633 fn= 143 theta= -0.126612 3.543082 range=[-1.959 4.138]
config 42=[ 1.50 -2.25] log(rel.dens)=-0.82, [2] accept, compute, 36.47s
config 43=[ -2.25 1.50] log(rel.dens)=-2.41, [0] accept, compute, 36.93s
config 44=[ 1.50 2.25] log(rel.dens)=-0.30, [3] accept, compute, 17.19s
config 45=[ 0.00 3.00] log(rel.dens)= 0.17, [1] accept, compute, 15.77s
config 46=[ 3.00 0.00] log(rel.dens)=-2.48, [2] accept, compute, 12.03s
config 47=[ 0.00 -3.00] log(rel.dens)=-0.08, [0] accept, compute, 11.16s
config 48=[ -3.00 0.00] log(rel.dens)=-3.83, [3] accept, compute, 11.05s
config 49=[ -0.75 -3.00] log(rel.dens)=-0.26, [1] accept, compute, 11.07s
config 50=[ -3.00 0.75] log(rel.dens)=-4.10, [2] accept, compute, 11.14s
max.logdens= -1141.830012 fn= 152 theta= -0.051326 3.547511 range=[-1.949 4.083]
config 51=[ 3.00 0.75] log(rel.dens)=-2.34, [0] accept, compute, 11.18s
config 52=[ -0.75 3.00] log(rel.dens)=-0.33, [3] accept, compute, 10.79s
config 53=[ 0.75 -3.00] log(rel.dens)=-0.27, [1] accept, compute, 10.55s
config 54=[ 0.75 3.00] log(rel.dens)= 0.23, [2] accept, compute, 10.60s
config 55=[ 3.00 -0.75] log(rel.dens)=-2.62, [0] accept, compute, 10.44s
config 56=[ 2.25 2.25] log(rel.dens)=-0.92, [1] accept, compute, 10.60s
config 57=[ -3.00 -0.75] log(rel.dens)=-3.63, [3] accept, compute, 10.72s
config 58=[ 2.25 -2.25] log(rel.dens)=-1.60, [2] accept, compute, 342.05s
config 59=[ -2.25 -2.25] log(rel.dens)=-1.94, [0] accept, compute, 341.91s
config 60=[ -2.25 2.25] log(rel.dens)=-2.58, [1] accept, compute, 341.89s
config 61=[ -1.50 3.00] log(rel.dens)=-1.27, [3] accept, compute, 342.24s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.55, [2] accept, compute, 11.03s
config 63=[ 1.50 -3.00] log(rel.dens)=-0.81, [0] accept, compute, 11.00s
config 64=[ 3.00 1.50] log(rel.dens)=-2.20, [1] accept, compute, 16.70s
config 65=[ 1.50 3.00] log(rel.dens)=-0.07, [3] accept, compute, 16.64s
config 66=[ -3.00 1.50] log(rel.dens)=-4.27, [2] accept, compute, 17.24s
config 67=[ -1.50 -3.00] log(rel.dens)=-0.84, [0] accept, compute, 17.53s
config 68=[ -2.25 -3.00] log(rel.dens)=-1.85, [3] accept, compute, 22.47s
config 69=[ 3.00 -1.50] log(rel.dens)=-2.76, [1] accept, compute, 23.20s
config 70=[ 2.25 -3.00] log(rel.dens)=-1.69, [2] accept, compute, 22.84s
config 71=[ 0.00 -3.75] log(rel.dens)=-0.13, [0] accept, compute, 23.01s
config 72=[ 3.00 -2.25] log(rel.dens)=-2.74, [1] accept, compute, 931.57s
config 73=[ -3.00 2.25] log(rel.dens)=-4.36, [3] accept, compute, 932.00s
config 74=[ 3.00 2.25] log(rel.dens)=-1.96, [2] accept, compute, 930.86s
config 75=[ -3.00 -2.25] log(rel.dens)=-3.37, [0] accept, compute, 930.65s
config 76=[ 2.25 3.00] log(rel.dens)=-0.73, [1] accept, compute, 17.70s
config 77=[ 0.00 3.75] log(rel.dens)= 0.22, [3] accept, compute, 17.66s
config 78=[ -3.75 0.00] log(rel.dens)=-6.03, reject, 0.57s
config 79=[ -2.25 3.00] log(rel.dens)=-2.74, [2] accept, compute, 18.36s
config 80=[ 3.75 0.00] log(rel.dens)=-3.94, [0] accept, compute, 18.61s
config 81=[ -0.75 3.75] log(rel.dens)=-0.43, [3] accept, compute, 29.25s
max.logdens= -1141.707842 fn= 183 theta= -0.063734 3.758396 range=[-1.951 4.091]
config 82=[ 0.75 -3.75] log(rel.dens)=-0.35, [1] accept, compute, 29.10s
config 83=[ 3.75 0.75] log(rel.dens)=-3.77, [2] accept, compute, 28.83s
config 84=[ 3.75 -0.75] log(rel.dens)=-4.00, [0] accept, compute, 28.32s
config 85=[ 0.75 3.75] log(rel.dens)= 0.36, [3] accept, compute, 10.93s
config 86=[ -0.75 -3.75] log(rel.dens)=-0.30, [1] accept, compute, 11.16s
config 87=[ 3.75 1.50] log(rel.dens)=-3.55, [0] accept, compute, 11.14s
config 88=[ -1.50 3.75] log(rel.dens)=-1.41, [2] accept, compute, 11.27s
config 89=[ -1.50 -3.75] log(rel.dens)=-0.86, [3] accept, compute, 18.24s
config 90=[ 1.50 -3.75] log(rel.dens)=-0.84, [1] accept, compute, 17.88s
config 91=[ 1.50 3.75] log(rel.dens)= 0.09, [0] accept, compute, 17.90s
config 92=[ 3.75 -1.50] log(rel.dens)=-4.12, [2] accept, compute, 18.06s
config 93=[ -3.00 -3.00] log(rel.dens)=-3.28, [3] accept, compute, 16.39s
config 94=[ 3.00 -3.00] log(rel.dens)=-2.76, [1] accept, compute, 16.28s
config 95=[ 3.00 3.00] log(rel.dens)=-1.73, [0] accept, compute, 16.26s
config 96=[ -3.00 3.00] log(rel.dens)=-4.56, [2] accept, compute, 16.44s
config 97=[ 2.25 -3.75] log(rel.dens)=-1.69, [3] accept, compute, 30.29s
config 98=[ 2.25 3.75] log(rel.dens)=-0.53, [1] accept, compute, 30.39s
config 99=[ -2.25 -3.75] log(rel.dens)=-1.88, [0] accept, compute, 30.02s
config 100=[ 3.75 -2.25] log(rel.dens)=-4.24, [2] accept, compute, 30.85s
config 101=[ 3.75 2.25] log(rel.dens)=-3.29, [3] accept, compute, 23.40s
config 102=[ -2.25 3.75] log(rel.dens)=-2.84, [1] accept, compute, 23.37s
config 103=[ 0.00 -4.50] log(rel.dens)=-0.21, [2] accept, compute, 25.80s
config 104=[ 0.00 4.50] log(rel.dens)= 0.28, [0] accept, compute, 27.20s
config 105=[ 4.50 0.00] log(rel.dens)=-5.60, [1] accept, compute, 34.76s
config 106=[ 4.50 -0.75] log(rel.dens)=-5.63, [3] accept, compute, 34.65s
config 107=[ 0.75 -4.50] log(rel.dens)=-0.45, [2] accept, compute, 31.16s
config 108=[ -0.75 4.50] log(rel.dens)=-0.43, [0] accept, compute, 31.07s
max.logdens= -1141.610436 fn= 208 theta= -0.076142 3.969281 range=[-1.954 4.100]
config 109=[ -0.75 -4.50] log(rel.dens)=-0.43, [1] accept, compute, 16.63s
config 110=[ 0.75 4.50] log(rel.dens)= 0.45, [3] accept, compute, 17.17s
config 111=[ 4.50 0.75] log(rel.dens)=-5.34, [2] accept, compute, 17.31s
config 112=[ -1.50 4.50] log(rel.dens)=-1.51, [0] accept, compute, 17.71s
config 113=[ 4.50 -1.50] log(rel.dens)=-5.73, [1] accept, compute, 23.44s
config 114=[ -1.50 -4.50] log(rel.dens)=-0.94, [3] accept, compute, 23.95s
config 115=[ 1.50 4.50] log(rel.dens)= 0.26, [2] accept, compute, 23.47s
config 116=[ 4.50 1.50] log(rel.dens)=-5.19, [0] accept, compute, 23.16s
config 117=[ 1.50 -4.50] log(rel.dens)=-0.89, [1] accept, compute, 27.53s
config 118=[ 3.75 -3.00] log(rel.dens)=-4.16, [3] accept, compute, 26.95s
config 119=[ -3.00 -3.75] log(rel.dens)=-3.27, [2] accept, compute, 27.07s
config 120=[ 3.00 3.75] log(rel.dens)=-1.49, [0] accept, compute, 27.24s
config 121=[ 3.75 3.00] log(rel.dens)=-3.03, [3] accept, compute, 18.29s
config 122=[ -3.00 3.75] log(rel.dens)=-4.85, [1] accept, compute, 18.51s
config 123=[ 3.00 -3.75] log(rel.dens)=-2.81, [2] accept, compute, 18.32s
config 124=[ 4.50 -2.25] log(rel.dens)=-5.74, [0] accept, compute, 18.29s
config 125=[ 2.25 -4.50] log(rel.dens)=-1.68, [3] accept, compute, 19.44s
config 126=[ -2.25 -4.50] log(rel.dens)=-1.90, [1] accept, compute, 19.69s
config 127=[ -2.25 4.50] log(rel.dens)=-3.07, [2] accept, compute, 19.75s
config 128=[ 5.25 0.00] log(rel.dens)=-7.45, reject, 0.55s
config 129=[ 2.25 4.50] log(rel.dens)=-0.32, [0] accept, compute, 20.01s
config 130=[ 4.50 2.25] log(rel.dens)=-4.88, [3] accept, compute, 16.92s
config 131=[ 0.00 -5.25] log(rel.dens)=-0.38, [1] accept, compute, 16.61s
config 132=[ 0.00 5.25] log(rel.dens)= 0.35, [2] accept, compute, 16.85s
config 133=[ -0.75 -5.25] log(rel.dens)=-0.53, [0] accept, compute, 16.73s
max.logdens= -1141.468104 fn= 235 theta= -0.088550 4.180165 range=[-1.956 4.108]
config 134=[ 3.75 3.75] log(rel.dens)=-2.84, [3] accept, compute, 14.68s
config 135=[ -0.75 5.25] log(rel.dens)=-0.34, [1] accept, compute, 14.68s
config 136=[ 0.75 -5.25] log(rel.dens)=-0.49, [2] accept, compute, 14.80s
config 137=[ 0.75 5.25] log(rel.dens)= 0.60, [0] accept, compute, 15.10s
config 138=[ 3.75 -3.75] log(rel.dens)=-4.10, [3] accept, compute, 13.13s
config 139=[ -3.00 -4.50] log(rel.dens)=-3.29, [1] accept, compute, 13.26s
config 140=[ 3.00 -4.50] log(rel.dens)=-2.75, [2] accept, compute, 13.19s
config 141=[ -3.00 4.50] log(rel.dens)=-4.99, [0] accept, compute, 13.32s
config 142=[ 4.50 -3.00] log(rel.dens)=-5.78, [3] accept, compute, 16.43s
config 143=[ 4.50 3.00] log(rel.dens)=-4.60, [2] accept, compute, 15.76s
config 144=[ 3.00 4.50] log(rel.dens)=-1.28, [1] accept, compute, 15.92s
config 145=[ 1.50 5.25] log(rel.dens)= 0.42, [0] accept, compute, 16.89s
config 146=[ 1.50 -5.25] log(rel.dens)=-0.96, [1] accept, compute, 23.81s
config 147=[ -1.50 -5.25] log(rel.dens)=-1.17, [2] accept, compute, 24.05s
config 148=[ -1.50 5.25] log(rel.dens)=-1.47, [3] accept, compute, 24.59s
config 149=[ 2.25 5.25] log(rel.dens)=-0.16, [0] accept, compute, 23.51s
config 150=[ -2.25 -5.25] log(rel.dens)=-2.14, [2] accept, compute, 18.44s
config 151=[ -2.25 5.25] log(rel.dens)=-3.14, [1] accept, compute, 18.73s
config 152=[ 2.25 -5.25] log(rel.dens)=-1.75, [3] accept, compute, 18.69s
config 153=[ 4.50 3.75] log(rel.dens)=-4.30, [0] accept, compute, 18.09s
config 154=[ 3.75 4.50] log(rel.dens)=-2.51, [2] accept, compute, 16.29s
config 155=[ 3.75 -4.50] log(rel.dens)=-4.05, [3] accept, compute, 15.89s
config 156=[ 4.50 -3.75] log(rel.dens)=-5.66, [1] accept, compute, 16.59s
config 157=[ 0.00 -6.00] log(rel.dens)=-0.58, [0] accept, compute, 16.12s
config 158=[ 0.00 6.00] log(rel.dens)= 0.39, [2] accept, compute, 12.63s
config 159=[ 0.75 -6.00] log(rel.dens)=-0.67, [1] accept, compute, 12.31s
config 160=[ 3.00 5.25] log(rel.dens)=-0.96, [3] accept, compute, 12.41s
config 161=[ -3.00 5.25] log(rel.dens)=-5.24, [0] accept, compute, 12.51s
max.logdens= -1141.353596 fn= 263 theta= -0.100957 4.391050 range=[-1.959 4.117]
config 162=[ -0.75 -6.00] log(rel.dens)=-0.76, [2] accept, compute, 14.02s
config 163=[ 3.00 -5.25] log(rel.dens)=-2.73, [1] accept, compute, 13.95s
config 164=[ -3.00 -5.25] log(rel.dens)=-3.51, [3] accept, compute, 13.97s
config 165=[ 0.75 6.00] log(rel.dens)= 0.71, [0] accept, compute, 14.24s
config 166=[ -1.50 -6.00] log(rel.dens)=-1.34, [3] accept, compute, 16.96s
config 167=[ -0.75 6.00] log(rel.dens)=-0.34, [2] accept, compute, 17.17s
config 168=[ 1.50 6.00] log(rel.dens)= 0.62, [1] accept, compute, 17.27s
config 169=[ -1.50 6.00] log(rel.dens)=-1.54, [0] accept, compute, 17.19s
config 170=[ 1.50 -6.00] log(rel.dens)=-1.08, [3] accept, compute, 21.36s
config 171=[ 4.50 -4.50] log(rel.dens)=-5.58, [1] accept, compute, 21.17s
config 172=[ 4.50 4.50] log(rel.dens)=-4.00, [2] accept, compute, 21.42s
config 173=[ 2.25 -6.00] log(rel.dens)=-1.83, [0] accept, compute, 21.31s
config 174=[ -2.25 -6.00] log(rel.dens)=-2.32, [3] accept, compute, 12.87s
config 175=[ -2.25 6.00] log(rel.dens)=-3.23, [1] accept, compute, 12.94s
config 176=[ 2.25 6.00] log(rel.dens)= 0.15, [2] accept, compute, 12.87s
config 177=[ 3.75 -5.25] log(rel.dens)=-3.98, [0] accept, compute, 12.68s
config 178=[ 3.75 5.25] log(rel.dens)=-2.20, [3] accept, compute, 16.88s
config 179=[ -3.00 -6.00] log(rel.dens)=-3.68, [1] accept, compute, 16.81s
config 180=[ 3.00 6.00] log(rel.dens)=-0.74, [2] accept, compute, 16.87s
config 181=[ 3.00 -6.00] log(rel.dens)=-2.82, [0] accept, compute, 17.31s
config 182=[ 0.00 -6.75] log(rel.dens)=-0.87, [1] accept, compute, 15.99s
config 183=[ -3.00 6.00] log(rel.dens)=-5.42, [3] accept, compute, 16.44s
config 184=[ 0.00 6.75] log(rel.dens)= 0.47, [2] accept, compute, 16.34s
max.logdens= -1141.307530 fn= 285 theta= -0.113365 4.601935 range=[-1.962 4.125]
config 185=[ -0.75 6.75] log(rel.dens)=-0.40, [0] accept, compute, 15.67s
config 186=[ 0.75 -6.75] log(rel.dens)=-0.99, [1] accept, compute, 11.13s
config 187=[ 0.75 6.75] log(rel.dens)= 0.76, [2] accept, compute, 11.12s
config 188=[ -0.75 -6.75] log(rel.dens)=-1.15, [3] accept, compute, 11.20s
config 189=[ -1.50 6.75] log(rel.dens)=-1.74, [0] accept, compute, 11.10s
config 190=[ 4.50 5.25] log(rel.dens)=-3.64, [1] accept, compute, 21.40s
config 191=[ 1.50 6.75] log(rel.dens)= 0.73, [2] accept, compute, 21.25s
config 192=[ 1.50 -6.75] log(rel.dens)=-1.29, [3] accept, compute, 21.72s
config 193=[ 4.50 -5.25] log(rel.dens)=-5.54, [0] accept, compute, 21.57s
config 194=[ 3.75 6.00] log(rel.dens)=-1.83, [2] accept, compute, 18.31s
config 195=[ -1.50 -6.75] log(rel.dens)=-1.85, [1] accept, compute, 18.92s
config 196=[ -2.25 -6.75] log(rel.dens)=-2.86, [0] accept, compute, 18.08s
config 197=[ 3.75 -6.00] log(rel.dens)=-3.92, [3] accept, compute, 18.41s
config 198=[ -2.25 6.75] log(rel.dens)=-3.53, [2] accept, compute, 15.40s
config 199=[ 2.25 6.75] log(rel.dens)= 0.37, [1] accept, compute, 15.82s
config 200=[ 2.25 -6.75] log(rel.dens)=-1.93, [0] accept, compute, 15.80s
config 201=[ 3.00 6.75] log(rel.dens)=-0.40, [3] accept, compute, 16.04s
config 202=[ -3.00 -6.75] log(rel.dens)=-4.12, [2] accept, compute, 16.87s
config 203=[ -3.00 6.75] log(rel.dens)=-5.74, [1] accept, compute, 17.00s
config 204=[ 3.00 -6.75] log(rel.dens)=-2.84, [0] accept, compute, 17.65s
config 205=[ 0.00 7.50] log(rel.dens)= 0.52, [3] accept, compute, 18.45s
config 206=[ 4.50 -6.00] log(rel.dens)=-5.38, [2] accept, compute, 20.43s
config 207=[ 4.50 6.00] log(rel.dens)=-3.26, [1] accept, compute, 20.92s
config 208=[ 0.00 -7.50] log(rel.dens)=-1.35, [0] accept, compute, 20.76s
config 209=[ -0.75 -7.50] log(rel.dens)=-1.68, [3] accept, compute, 19.98s
max.logdens= -1141.104645 fn= 310 theta= -0.125773 4.812820 range=[-1.964 4.133]
config 210=[ -0.75 7.50] log(rel.dens)=-0.50, [2] accept, compute, 15.98s
max.logdens= -1141.069863 fn= 312 theta= -0.050487 4.817249 range=[-1.954 4.078]
config 211=[ 0.75 -7.50] log(rel.dens)=-1.39, [1] accept, compute, 15.66s
config 212=[ 0.75 7.50] log(rel.dens)= 0.96, [0] accept, compute, 15.51s
config 213=[ 1.50 -7.50] log(rel.dens)=-1.62, [3] accept, compute, 15.59s
config 214=[ 1.50 7.50] log(rel.dens)= 0.99, [2] accept, compute, 18.53s
config 215=[ -1.50 -7.50] log(rel.dens)=-2.32, [1] accept, compute, 18.75s
config 216=[ -1.50 7.50] log(rel.dens)=-1.71, [0] accept, compute, 19.00s
config 217=[ 3.75 -6.75] log(rel.dens)=-3.88, [3] accept, compute, 20.05s
config 218=[ 3.75 6.75] log(rel.dens)=-1.49, [2] accept, compute, 28.34s
config 219=[ -2.25 7.50] log(rel.dens)=-3.57, [1] accept, compute, 28.74s
config 220=[ 2.25 -7.50] log(rel.dens)=-2.23, [0] accept, compute, 28.25s
config 221=[ -3.00 7.50] log(rel.dens)=-6.04, reject, 0.51s
config 222=[ 2.25 7.50] log(rel.dens)= 0.62, [3] accept, compute, 27.94s
config 223=[ -2.25 -7.50] log(rel.dens)=-3.34, [2] accept, compute, 15.77s
config 224=[ 3.00 -7.50] log(rel.dens)=-2.94, [1] accept, compute, 15.07s
config 225=[ -3.00 -7.50] log(rel.dens)=-4.79, [0] accept, compute, 15.54s
config 226=[ 3.00 7.50] log(rel.dens)=-0.17, [3] accept, compute, 14.60s
config 227=[ 4.50 -6.75] log(rel.dens)=-5.22, [2] accept, compute, 12.01s
config 228=[ 4.50 6.75] log(rel.dens)=-2.91, [1] accept, compute, 11.64s
config 229=[ 0.00 -8.25] log(rel.dens)=-2.05, [0] accept, compute, 11.82s
max.logdens= -1140.992513 fn= 330 theta= -0.138181 5.023704 range=[-1.967 4.142]
config 230=[ 0.00 8.25] log(rel.dens)= 0.57, [3] accept, compute, 11.58s
config 231=[ 0.75 -8.25] log(rel.dens)=-1.96, [2] accept, compute, 11.82s
max.logdens= -1140.907654 fn= 333 theta= -0.062895 5.028134 range=[-1.956 4.086]
config 232=[ -0.75 8.25] log(rel.dens)=-0.40, [0] accept, compute, 11.68s
config 233=[ 0.75 8.25] log(rel.dens)= 1.07, [1] accept, compute, 12.03s
config 234=[ -0.75 -8.25] log(rel.dens)=-2.46, [3] accept, compute, 11.79s
config 235=[ 1.50 8.25] log(rel.dens)= 1.16, [2] accept, compute, 13.15s
config 236=[ 3.75 -7.50] log(rel.dens)=-3.96, [1] accept, compute, 15.56s
config 237=[ -1.50 -8.25] log(rel.dens)=-3.18, [0] accept, compute, 15.69s
config 238=[ 3.75 7.50] log(rel.dens)=-1.20, [3] accept, compute, 15.54s
config 239=[ 1.50 -8.25] log(rel.dens)=-2.16, [2] accept, compute, 22.05s
config 240=[ -2.25 8.25] log(rel.dens)=-3.88, [3] accept, compute, 19.67s
config 241=[ -1.50 8.25] log(rel.dens)=-1.98, [1] accept, compute, 20.48s
config 242=[ 2.25 8.25] log(rel.dens)= 0.83, [0] accept, compute, 20.43s
config 243=[ -2.25 -8.25] log(rel.dens)=-4.24, [2] accept, compute, 15.69s
config 244=[ 2.25 -8.25] log(rel.dens)=-2.67, [3] accept, compute, 15.61s
config 245=[ 4.50 7.50] log(rel.dens)=-2.58, [1] accept, compute, 15.45s
config 246=[ 4.50 -7.50] log(rel.dens)=-5.11, [0] accept, compute, 15.66s
config 247=[ 3.00 -8.25] log(rel.dens)=-3.25, [2] accept, compute, 15.23s
config 248=[ 3.00 8.25] log(rel.dens)= 0.17, [3] accept, compute, 14.79s
max.logdens= -1140.867819 fn= 350 theta= -0.150589 5.234589 range=[-1.969 4.151]
config 249=[ 0.00 -9.00] log(rel.dens)=-3.06, [0] accept, compute, 14.90s
config 250=[ -3.00 -8.25] log(rel.dens)=-5.67, [1] accept, compute, 15.67s
config 251=[ 0.00 9.00] log(rel.dens)= 0.56, [2] accept, compute, 13.37s
config 252=[ 0.75 9.00] log(rel.dens)= 1.20, [3] accept, compute, 13.37s
config 253=[ -0.75 -9.00] log(rel.dens)=-3.59, [0] accept, compute, 13.39s
config 254=[ -0.75 9.00] log(rel.dens)=-0.43, [1] accept, compute, 13.07s
config 255=[ 0.75 -9.00] log(rel.dens)=-2.88, [2] accept, compute, 13.13s
config 256=[ 3.75 8.25] log(rel.dens)=-0.82, [3] accept, compute, 13.58s
config 257=[ -1.50 9.00] log(rel.dens)=-2.04, [1] accept, compute, 12.99s
config 258=[ 3.75 -8.25] log(rel.dens)=-4.10, [0] accept, compute, 13.62s
max.logdens= -1140.720042 fn= 359 theta= -0.075303 5.239019 range=[-1.958 4.095]
config 259=[ -1.50 -9.00] log(rel.dens)=-4.32, [2] accept, compute, 19.72s
config 260=[ 1.50 -9.00] log(rel.dens)=-2.97, [3] accept, compute, 21.91s
config 261=[ 1.50 9.00] log(rel.dens)= 1.34, [1] accept, compute, 21.99s
config 262=[ -2.25 9.00] log(rel.dens)=-3.92, [0] accept, compute, 22.13s
config 263=[ -2.25 -9.00] log(rel.dens)=-5.53, [2] accept, compute, 15.03s
config 264=[ 2.25 9.00] log(rel.dens)= 1.07, [3] accept, compute, 13.03s
config 265=[ 2.25 -9.00] log(rel.dens)=-3.26, [1] accept, compute, 12.65s
config 266=[ -3.00 -9.00] log(rel.dens)=-6.95, reject, 0.68s
config 267=[ 4.50 8.25] log(rel.dens)=-2.24, [0] accept, compute, 12.93s
config 268=[ 4.50 -8.25] log(rel.dens)=-5.17, [2] accept, compute, 13.46s
config 269=[ 3.00 -9.00] log(rel.dens)=-3.78, [1] accept, compute, 13.37s
config 270=[ 3.00 9.00] log(rel.dens)= 0.37, [3] accept, compute, 13.61s
config 271=[ 0.00 9.75] log(rel.dens)= 0.61, [0] accept, compute, 13.67s
config 272=[ 0.00 -9.75] log(rel.dens)=-4.44, [2] accept, compute, 12.54s
config 273=[ 3.75 -9.00] log(rel.dens)=-4.48, [1] accept, compute, 12.32s
config 274=[ 3.75 9.00] log(rel.dens)=-0.54, [3] accept, compute, 12.80s
config 275=[ -0.75 -9.75] log(rel.dens)=-5.06, [0] accept, compute, 12.94s
config 276=[ -0.75 9.75] log(rel.dens)=-0.50, [2] accept, compute, 15.58s
max.logdens= -1140.549992 fn= 378 theta= -0.087711 5.449903 range=[-1.961 4.104]
config 277=[ 0.75 9.75] log(rel.dens)= 1.24, [1] accept, compute, 16.03s
config 278=[ 0.75 -9.75] log(rel.dens)=-4.09, [3] accept, compute, 16.20s
config 279=[ -1.50 9.75] log(rel.dens)=-2.09, [0] accept, compute, 15.65s
config 280=[ 1.50 9.75] log(rel.dens)= 1.51, [2] accept, compute, 14.86s
config 281=[ 1.50 -9.75] log(rel.dens)=-4.09, [1] accept, compute, 14.28s
config 282=[ -2.25 -9.75] log(rel.dens)=-7.12, reject, 0.37s
config 283=[ 2.25 -9.75] log(rel.dens)=-4.19, [0] accept, compute, 13.56s
config 284=[ -1.50 -9.75] log(rel.dens)=-5.89, [3] accept, compute, 13.70s
config 285=[ 2.25 9.75] log(rel.dens)= 1.25, [2] accept, compute, 12.13s
config 286=[ -2.25 9.75] log(rel.dens)=-4.16, [1] accept, compute, 12.76s
config 287=[ 4.50 9.00] log(rel.dens)=-1.89, [3] accept, compute, 12.85s
config 288=[ 4.50 -9.00] log(rel.dens)=-5.32, [0] accept, compute, 13.19s
config 289=[ 3.00 9.75] log(rel.dens)= 0.69, [2] accept, compute, 11.53s
config 290=[ 3.00 -9.75] log(rel.dens)=-4.55, [1] accept, compute, 11.26s
config 291=[ 3.75 9.75] log(rel.dens)=-0.23, [3] accept, compute, 10.92s
config 292=[ 0.00 -10.50] log(rel.dens)=-6.29, reject, 0.35s
config 293=[ 3.75 -9.75] log(rel.dens)=-5.26, [0] accept, compute, 10.96s
config 294=[ -0.75 -10.50] log(rel.dens)=-7.01, reject, 0.46s
config 295=[ 0.00 10.50] log(rel.dens)= 0.66, [2] accept, compute, 25.17s
max.logdens= -1140.393168 fn= 397 theta= -0.100119 5.660788 range=[-1.963 4.113]
config 296=[ -1.50 10.50] log(rel.dens)=-2.24, [3] accept, compute, 29.70s
config 297=[ 0.75 10.50] log(rel.dens)= 1.31, [0] accept, compute, 29.98s
config 298=[ -0.75 10.50] log(rel.dens)=-0.58, [1] accept, compute, 30.10s
config 299=[ 1.50 10.50] log(rel.dens)= 1.67, [2] accept, compute, 20.13s
config 300=[ -2.25 10.50] log(rel.dens)=-4.34, [1] accept, compute, 16.52s
config 301=[ 2.25 10.50] log(rel.dens)= 1.55, [0] accept, compute, 16.62s
config 302=[ 4.50 9.75] log(rel.dens)=-1.44, [3] accept, compute, 16.77s
config 303=[ 4.50 -9.75] log(rel.dens)=-5.88, [2] accept, compute, 18.95s
config 304=[ 3.00 10.50] log(rel.dens)= 0.99, [1] accept, compute, 19.42s
config 305=[ 3.75 10.50] log(rel.dens)= 0.18, [0] accept, compute, 19.95s
config 306=[ 0.00 11.25] log(rel.dens)= 0.63, [3] accept, compute, 19.96s
max.logdens= -1140.252651 fn= 407 theta= -0.112527 5.871673 range=[-1.965 4.122]
config 307=[ -0.75 11.25] log(rel.dens)=-0.78, [2] accept, compute, 14.02s
config 308=[ 0.75 11.25] log(rel.dens)= 1.46, [1] accept, compute, 13.64s
config 309=[ 1.50 11.25] log(rel.dens)= 1.81, [0] accept, compute, 13.36s
config 310=[ -1.50 11.25] log(rel.dens)=-2.33, [3] accept, compute, 13.68s
config 311=[ 4.50 10.50] log(rel.dens)=-1.04, [2] accept, compute, 16.28s
config 312=[ -2.25 11.25] log(rel.dens)=-4.59, [1] accept, compute, 15.50s
config 313=[ 2.25 11.25] log(rel.dens)= 1.67, [0] accept, compute, 15.40s
config 314=[ 3.00 11.25] log(rel.dens)= 1.28, [3] accept, compute, 15.85s
config 315=[ 3.75 11.25] log(rel.dens)= 0.42, [2] accept, compute, 12.88s
config 316=[ 0.00 12.00] log(rel.dens)= 0.65, [1] accept, compute, 11.92s
max.logdens= -1140.123953 fn= 418 theta= -0.124935 6.082557 range=[-1.967 4.131]
config 317=[ -0.75 12.00] log(rel.dens)=-0.69, [0] accept, compute, 12.03s
config 318=[ 0.75 12.00] log(rel.dens)= 1.52, [3] accept, compute, 11.80s
config 319=[ -1.50 12.00] log(rel.dens)=-2.59, [2] accept, compute, 11.15s
config 320=[ 1.50 12.00] log(rel.dens)= 1.94, [1] accept, compute, 11.24s
config 321=[ 4.50 11.25] log(rel.dens)=-0.67, [0] accept, compute, 11.32s
config 322=[ -2.25 12.00] log(rel.dens)=-4.84, [3] accept, compute, 11.19s
config 323=[ 2.25 12.00] log(rel.dens)= 1.93, [2] accept, compute, 10.65s
config 324=[ 3.00 12.00] log(rel.dens)= 1.56, [1] accept, compute, 13.53s
config 325=[ 3.75 12.00] log(rel.dens)= 0.72, [0] accept, compute, 13.60s
config 326=[ 0.00 12.75] log(rel.dens)= 0.62, [3] accept, compute, 14.31s
config 327=[ 0.75 12.75] log(rel.dens)= 1.56, [2] accept, compute, 18.13s
max.logdens= -1140.111010 fn= 429 theta= -0.137343 6.293442 range=[-1.969 4.140]
config 328=[ -0.75 12.75] log(rel.dens)=-0.82, [1] accept, compute, 17.51s
config 329=[ 4.50 12.00] log(rel.dens)=-0.33, [0] accept, compute, 17.38s
max.logdens= -1139.947897 fn= 431 theta= -0.062057 6.297872 range=[-1.959 4.084]
config 330=[ -1.50 12.75] log(rel.dens)=-2.70, [3] accept, compute, 17.44s
config 331=[ 1.50 12.75] log(rel.dens)= 1.95, [2] accept, compute, 23.58s
config 332=[ -2.25 12.75] log(rel.dens)=-5.11, [1] accept, compute, 23.76s
config 333=[ 2.25 12.75] log(rel.dens)= 2.12, [0] accept, compute, 23.50s
config 334=[ 3.00 12.75] log(rel.dens)= 1.76, [3] accept, compute, 24.00s
config 335=[ 3.75 12.75] log(rel.dens)= 1.10, [2] accept, compute, 19.29s
config 336=[ 0.00 13.50] log(rel.dens)= 0.56, [1] accept, compute, 16.91s
config 337=[ 4.50 12.75] log(rel.dens)= 0.07, [0] accept, compute, 17.03s
max.logdens= -1139.927579 fn= 438 theta= -0.149751 6.504327 range=[-1.971 4.148]
config 338=[ 0.75 13.50] log(rel.dens)= 1.57, [3] accept, compute, 16.78s
config 339=[ -0.75 13.50] log(rel.dens)=-0.98, [2] accept, compute, 15.41s
max.logdens= -1139.797768 fn= 441 theta= -0.074465 6.508756 range=[-1.961 4.093]
config 340=[ -1.50 13.50] log(rel.dens)=-3.07, [0] accept, compute, 16.47s
config 341=[ 1.50 13.50] log(rel.dens)= 2.14, [1] accept, compute, 16.69s
config 342=[ -2.25 13.50] log(rel.dens)=-5.43, [3] accept, compute, 17.53s
config 343=[ 2.25 13.50] log(rel.dens)= 2.27, [2] accept, compute, 20.82s
config 344=[ 3.75 13.50] log(rel.dens)= 1.37, [1] accept, compute, 21.22s
config 345=[ 3.00 13.50] log(rel.dens)= 1.98, [0] accept, compute, 21.47s
config 346=[ 4.50 13.50] log(rel.dens)= 0.28, [3] accept, compute, 21.79s
config 347=[ 0.00 14.25] log(rel.dens)= 0.47, [2] accept, compute, 16.98s
config 348=[ -0.75 14.25] log(rel.dens)=-1.14, [1] accept, compute, 15.35s
max.logdens= -1139.667373 fn= 450 theta= -0.086872 6.719641 range=[-1.963 4.102]
config 349=[ 0.75 14.25] log(rel.dens)= 1.56, [0] accept, compute, 15.79s
config 350=[ -1.50 14.25] log(rel.dens)=-3.32, [3] accept, compute, 16.86s
config 351=[ 1.50 14.25] log(rel.dens)= 2.20, [2] accept, compute, 19.14s
config 352=[ 2.25 14.25] log(rel.dens)= 2.40, [1] accept, compute, 19.30s
config 353=[ -2.25 14.25] log(rel.dens)=-5.76, [0] accept, compute, 19.94s
config 354=[ 3.00 14.25] log(rel.dens)= 2.17, [3] accept, compute, 20.02s
config 355=[ 3.75 14.25] log(rel.dens)= 1.62, [2] accept, compute, 24.17s
config 356=[ 4.50 14.25] log(rel.dens)= 0.70, [1] accept, compute, 24.11s
config 357=[ 0.00 15.00] log(rel.dens)= 0.36, [0] accept, compute, 25.04s
config 358=[ 0.75 15.00] log(rel.dens)= 1.53, [3] accept, compute, 24.43s
config 359=[ -2.25 15.00] log(rel.dens)=-6.12, reject, 0.46s
max.logdens= -1139.592118 fn= 461 theta= -0.099280 6.930526 range=[-1.964 4.111]
config 360=[ -0.75 15.00] log(rel.dens)=-1.34, [2] accept, compute, 16.48s
config 361=[ 1.50 15.00] log(rel.dens)= 2.23, [1] accept, compute, 16.35s
config 362=[ -1.50 15.00] log(rel.dens)=-3.44, [0] accept, compute, 14.95s
config 363=[ 2.25 15.00] log(rel.dens)= 2.47, [3] accept, compute, 15.21s
config 364=[ 3.00 15.00] log(rel.dens)= 2.35, [2] accept, compute, 17.74s
config 365=[ 3.75 15.00] log(rel.dens)= 1.85, [1] accept, compute, 17.45s
config 366=[ 4.50 15.00] log(rel.dens)= 0.90, [0] accept, compute, 18.23s
config 367=[ 0.00 15.75] log(rel.dens)= 0.21, [3] accept, compute, 16.56s
config 368=[ -0.75 15.75] log(rel.dens)=-1.54, [2] accept, compute, 15.40s
max.logdens= -1139.494608 fn= 470 theta= -0.111688 7.141411 range=[-1.966 4.120]
config 369=[ 0.75 15.75] log(rel.dens)= 1.45, [1] accept, compute, 16.18s
config 370=[ -1.50 15.75] log(rel.dens)=-3.75, [0] accept, compute, 15.96s
config 371=[ 1.50 15.75] log(rel.dens)= 2.24, [3] accept, compute, 16.02s
config 372=[ 2.25 15.75] log(rel.dens)= 2.57, [2] accept, compute, 15.36s
config 373=[ 3.00 15.75] log(rel.dens)= 2.50, [1] accept, compute, 14.32s
config 374=[ 3.75 15.75] log(rel.dens)= 1.99, [0] accept, compute, 13.42s
config 375=[ 4.50 15.75] log(rel.dens)= 1.22, [3] accept, compute, 14.82s
config 376=[ 0.00 16.50] log(rel.dens)= 0.02, [2] accept, compute, 15.35s
config 377=[ 0.75 16.50] log(rel.dens)= 1.34, [1] accept, compute, 16.37s
max.logdens= -1139.456553 fn= 479 theta= -0.124096 7.352295 range=[-1.968 4.129]
config 378=[ -0.75 16.50] log(rel.dens)=-1.84, [0] accept, compute, 16.40s
config 379=[ 1.50 16.50] log(rel.dens)= 2.19, [3] accept, compute, 16.14s
config 380=[ -1.50 16.50] log(rel.dens)=-4.11, [2] accept, compute, 19.57s
config 381=[ 2.25 16.50] log(rel.dens)= 2.61, [1] accept, compute, 21.75s
config 382=[ 3.00 16.50] log(rel.dens)= 2.59, [0] accept, compute, 21.38s
config 383=[ 3.75 16.50] log(rel.dens)= 2.20, [3] accept, compute, 20.75s
config 384=[ 4.50 16.50] log(rel.dens)= 1.36, [2] accept, compute, 19.80s
config 385=[ -0.75 17.25] log(rel.dens)=-2.13, [0] accept, compute, 18.20s
config 386=[ 0.00 17.25] log(rel.dens)=-0.22, [1] accept, compute, 18.48s
config 387=[ 0.75 17.25] log(rel.dens)= 1.18, [3] accept, compute, 18.70s
max.logdens= -1139.413797 fn= 489 theta= -0.061218 7.567610 range=[-1.960 4.083]
config 388=[ 1.50 17.25] log(rel.dens)= 2.11, [2] accept, compute, 23.07s
config 389=[ 2.25 17.25] log(rel.dens)= 2.59, [1] accept, compute, 21.19s
config 390=[ -1.50 17.25] log(rel.dens)=-4.65, [0] accept, compute, 21.70s
config 391=[ 3.00 17.25] log(rel.dens)= 2.65, [3] accept, compute, 21.48s
config 392=[ 3.75 17.25] log(rel.dens)= 2.31, [2] accept, compute, 15.84s
config 393=[ 4.50 17.25] log(rel.dens)= 1.61, [1] accept, compute, 16.55s
config 394=[ 0.00 18.00] log(rel.dens)=-0.51, [0] accept, compute, 16.28s
config 395=[ 0.75 18.00] log(rel.dens)= 0.97, [3] accept, compute, 17.22s
config 396=[ -0.75 18.00] log(rel.dens)=-2.53, [2] accept, compute, 21.11s
config 397=[ 1.50 18.00] log(rel.dens)= 1.98, [0] accept, compute, 20.23s
config 398=[ -1.50 18.00] log(rel.dens)=-4.97, [1] accept, compute, 20.48s
config 399=[ 2.25 18.00] log(rel.dens)= 2.53, [3] accept, compute, 18.12s
config 400=[ 3.00 18.00] log(rel.dens)= 2.64, [2] accept, compute, 12.34s
config 401=[ 4.50 18.00] log(rel.dens)= 1.65, [1] accept, compute, 13.57s
config 402=[ 3.75 18.00] log(rel.dens)= 2.37, [0] accept, compute, 13.69s
config 403=[ 0.00 18.75] log(rel.dens)=-0.87, [3] accept, compute, 14.41s
config 404=[ -0.75 18.75] log(rel.dens)=-2.95, [2] accept, compute, 14.73s
config 405=[ 0.75 18.75] log(rel.dens)= 0.67, [1] accept, compute, 17.11s
config 406=[ -1.50 18.75] log(rel.dens)=-5.60, [0] accept, compute, 17.79s
config 407=[ 1.50 18.75] log(rel.dens)= 1.77, [3] accept, compute, 22.19s
config 408=[ 2.25 18.75] log(rel.dens)= 2.39, [2] accept, compute, 24.20s
config 409=[ 3.00 18.75] log(rel.dens)= 2.59, [1] accept, compute, 22.40s
config 410=[ 3.75 18.75] log(rel.dens)= 2.32, [0] accept, compute, 21.81s
config 411=[ 4.50 18.75] log(rel.dens)= 1.78, [3] accept, compute, 18.41s
config 412=[ -1.50 19.50] log(rel.dens)=-6.09, reject, 0.88s
config 413=[ 0.00 19.50] log(rel.dens)=-1.30, [2] accept, compute, 21.35s
config 414=[ -0.75 19.50] log(rel.dens)=-3.46, [1] accept, compute, 21.66s
config 415=[ 0.75 19.50] log(rel.dens)= 0.33, [0] accept, compute, 21.89s
config 416=[ 1.50 19.50] log(rel.dens)= 1.49, [3] accept, compute, 21.59s
config 417=[ 2.25 19.50] log(rel.dens)= 2.19, [2] accept, compute, 15.90s
config 418=[ 3.00 19.50] log(rel.dens)= 2.43, [1] accept, compute, 14.25s
config 419=[ 3.75 19.50] log(rel.dens)= 2.29, [0] accept, compute, 14.43s
config 420=[ 4.50 19.50] log(rel.dens)= 1.76, [3] accept, compute, 12.48s
config 421=[ 0.00 20.25] log(rel.dens)=-1.83, [2] accept, compute, 10.92s
config 422=[ -0.75 20.25] log(rel.dens)=-4.07, [1] accept, compute, 13.40s
config 423=[ 0.75 20.25] log(rel.dens)=-0.12, [0] accept, compute, 12.88s
config 424=[ 1.50 20.25] log(rel.dens)= 1.11, [3] accept, compute, 16.83s
config 425=[ 2.25 20.25] log(rel.dens)= 1.89, [2] accept, compute, 22.00s
config 426=[ 3.00 20.25] log(rel.dens)= 2.20, [1] accept, compute, 21.79s
config 427=[ 3.75 20.25] log(rel.dens)= 2.12, [0] accept, compute, 21.83s
config 428=[ 4.50 20.25] log(rel.dens)= 1.65, [3] accept, compute, 21.39s
config 429=[ 0.00 21.00] log(rel.dens)=-2.47, [2] accept, compute, 17.80s
config 430=[ 0.75 21.00] log(rel.dens)=-0.67, [1] accept, compute, 15.55s
config 431=[ -0.75 21.00] log(rel.dens)=-4.83, [0] accept, compute, 16.33s
config 432=[ 1.50 21.00] log(rel.dens)= 0.63, [3] accept, compute, 13.46s
config 433=[ 2.25 21.00] log(rel.dens)= 1.47, [2] accept, compute, 12.68s
config 434=[ 3.00 21.00] log(rel.dens)= 1.87, [1] accept, compute, 12.29s
config 435=[ 3.75 21.00] log(rel.dens)= 1.82, [0] accept, compute, 12.80s
config 436=[ 4.50 21.00] log(rel.dens)= 1.43, [3] accept, compute, 12.95s
config 437=[ 0.00 21.75] log(rel.dens)=-3.25, [2] accept, compute, 12.74s
config 438=[ -0.75 21.75] log(rel.dens)=-5.66, [1] accept, compute, 13.69s
config 439=[ 0.75 21.75] log(rel.dens)=-1.38, [0] accept, compute, 13.53s
config 440=[ 1.50 21.75] log(rel.dens)= 0.01, [3] accept, compute, 13.92s
config 441=[ 2.25 21.75] log(rel.dens)= 0.93, [2] accept, compute, 13.06s
config 442=[ 3.00 21.75] log(rel.dens)= 1.38, [1] accept, compute, 12.56s
config 443=[ -0.75 22.50] log(rel.dens)=-6.68, reject, 0.40s
config 444=[ 3.75 21.75] log(rel.dens)= 1.43, [0] accept, compute, 12.06s
config 445=[ 4.50 21.75] log(rel.dens)= 1.07, [3] accept, compute, 11.28s
config 446=[ 0.00 22.50] log(rel.dens)=-4.19, [2] accept, compute, 11.86s
config 447=[ 0.75 22.50] log(rel.dens)=-2.23, [1] accept, compute, 11.77s
config 448=[ 1.50 22.50] log(rel.dens)=-0.77, [0] accept, compute, 12.26s
config 449=[ 2.25 22.50] log(rel.dens)= 0.21, [3] accept, compute, 11.75s
config 450=[ 3.00 22.50] log(rel.dens)= 0.74, [2] accept, compute, 11.44s
config 451=[ 3.75 22.50] log(rel.dens)= 0.85, [1] accept, compute, 11.39s
config 452=[ 4.50 22.50] log(rel.dens)= 0.55, [0] accept, compute, 11.20s
config 453=[ 0.00 23.25] log(rel.dens)=-5.32, [3] accept, compute, 11.24s
config 454=[ 0.75 23.25] log(rel.dens)=-3.29, [2] accept, compute, 10.84s
config 455=[ 1.50 23.25] log(rel.dens)=-1.75, [1] accept, compute, 11.24s
config 456=[ 2.25 23.25] log(rel.dens)=-0.70, [0] accept, compute, 11.01s
config 457=[ 3.00 23.25] log(rel.dens)=-0.10, [3] accept, compute, 11.16s
config 458=[ 3.75 23.25] log(rel.dens)= 0.07, [2] accept, compute, 10.83s
config 459=[ 4.50 23.25] log(rel.dens)=-0.17, [1] accept, compute, 9.47s
Combine the densities with relative weights:
config 0/450=[ 0.00 0.00] weight = 0.067 adjusted weight = 0.001 neff = 461.71
config 1/450=[ -0.75 0.00] weight = 0.049 adjusted weight = 0.001 neff = 485.22
config 2/450=[ 0.75 0.00] weight = 0.064 adjusted weight = 0.001 neff = 438.76
config 3/450=[ 0.00 -0.75] weight = 0.069 adjusted weight = 0.001 neff = 459.43
config 4/450=[ 0.00 0.75] weight = 0.073 adjusted weight = 0.001 neff = 464.15
config 5/450=[ -0.75 0.75] weight = 0.052 adjusted weight = 0.001 neff = 487.79
config 6/450=[ 0.75 -0.75] weight = 0.056 adjusted weight = 0.001 neff = 436.86
config 7/450=[ -0.75 -0.75] weight = 0.054 adjusted weight = 0.001 neff = 482.74
config 8/450=[ 0.75 0.75] weight = 0.063 adjusted weight = 0.001 neff = 441.23
config 9/450=[ 0.00 -1.50] weight = 0.068 adjusted weight = 0.001 neff = 457.59
config 10/450=[ -1.50 0.00] weight = 0.026 adjusted weight = 0.000 neff = 509.17
config 11/450=[ 1.50 0.00] weight = 0.040 adjusted weight = 0.001 neff = 416.57
config 12/450=[ 0.00 1.50] weight = 0.068 adjusted weight = 0.001 neff = 467.07
config 13/450=[ -0.75 1.50] weight = 0.051 adjusted weight = 0.001 neff = 490.71
config 14/450=[ 0.75 -1.50] weight = 0.058 adjusted weight = 0.001 neff = 435.12
config 15/450=[ -0.75 -1.50] weight = 0.054 adjusted weight = 0.001 neff = 480.71
config 16/450=[ 0.75 1.50] weight = 0.068 adjusted weight = 0.001 neff = 443.84
config 17/450=[ -1.50 -0.75] weight = 0.025 adjusted weight = 0.000 neff = 506.75
config 18/450=[ 1.50 -0.75] weight = 0.035 adjusted weight = 0.001 neff = 414.84
config 19/450=[ -1.50 0.75] weight = 0.024 adjusted weight = 0.000 neff = 511.99
config 20/450=[ 1.50 0.75] weight = 0.040 adjusted weight = 0.001 neff = 418.88
config 21/450=[ 1.50 1.50] weight = 0.048 adjusted weight = 0.001 neff = 421.26
config 22/450=[ -1.50 -1.50] weight = 0.029 adjusted weight = 0.001 neff = 504.42
config 23/450=[ 1.50 -1.50] weight = 0.035 adjusted weight = 0.001 neff = 413.32
config 24/450=[ -1.50 1.50] weight = 0.023 adjusted weight = 0.000 neff = 515.06
config 25/450=[ 0.00 -2.25] weight = 0.067 adjusted weight = 0.001 neff = 456.20
config 26/450=[ 2.25 0.00] weight = 0.018 adjusted weight = 0.000 neff = 395.10
config 27/450=[ -2.25 0.00] weight = 0.008 adjusted weight = 0.000 neff = 533.75
config 28/450=[ 0.00 2.25] weight = 0.079 adjusted weight = 0.001 neff = 469.90
config 29/450=[ -0.75 -2.25] weight = 0.055 adjusted weight = 0.001 neff = 479.12
config 30/450=[ 2.25 0.75] weight = 0.020 adjusted weight = 0.000 neff = 397.08
config 31/450=[ 0.75 -2.25] weight = 0.056 adjusted weight = 0.001 neff = 433.95
config 32/450=[ -2.25 -0.75] weight = 0.009 adjusted weight = 0.000 neff = 531.02
config 33/450=[ 2.25 -0.75] weight = 0.016 adjusted weight = 0.000 neff = 393.45
config 34/450=[ -0.75 2.25] weight = 0.051 adjusted weight = 0.001 neff = 493.85
config 35/450=[ -2.25 0.75] weight = 0.007 adjusted weight = 0.000 neff = 536.71
config 36/450=[ 0.75 2.25] weight = 0.081 adjusted weight = 0.002 neff = 446.57
config 37/450=[ -2.25 -1.50] weight = 0.010 adjusted weight = 0.000 neff = 528.68
config 38/450=[ 2.25 -1.50] weight = 0.015 adjusted weight = 0.000 neff = 392.23
config 39/450=[ -1.50 -2.25] weight = 0.030 adjusted weight = 0.001 neff = 502.61
config 40/450=[ 2.25 1.50] weight = 0.024 adjusted weight = 0.000 neff = 399.36
config 41/450=[ -1.50 2.25] weight = 0.019 adjusted weight = 0.000 neff = 518.52
config 42/450=[ 1.50 -2.25] weight = 0.031 adjusted weight = 0.001 neff = 412.45
config 43/450=[ -2.25 1.50] weight = 0.006 adjusted weight = 0.000 neff = 539.89
config 44/450=[ 1.50 2.25] weight = 0.052 adjusted weight = 0.001 neff = 424.01
config 45/450=[ 0.00 3.00] weight = 0.083 adjusted weight = 0.002 neff = 473.08
config 46/450=[ 3.00 0.00] weight = 0.006 adjusted weight = 0.000 neff = 374.35
config 47/450=[ 0.00 -3.00] weight = 0.065 adjusted weight = 0.001 neff = 455.34
config 48/450=[ -3.00 0.00] weight = 0.002 adjusted weight = 0.000 neff = 558.76
config 49/450=[ -0.75 -3.00] weight = 0.054 adjusted weight = 0.001 neff = 478.01
config 50/450=[ -3.00 0.75] weight = 0.001 adjusted weight = 0.000 neff = 561.98
config 51/450=[ 3.00 0.75] weight = 0.007 adjusted weight = 0.000 neff = 376.16
config 52/450=[ -0.75 3.00] weight = 0.051 adjusted weight = 0.001 neff = 497.15
config 53/450=[ 0.75 -3.00] weight = 0.054 adjusted weight = 0.001 neff = 433.30
config 54/450=[ 0.75 3.00] weight = 0.089 adjusted weight = 0.002 neff = 449.62
config 55/450=[ 3.00 -0.75] weight = 0.005 adjusted weight = 0.000 neff = 372.93
config 56/450=[ 2.25 2.25] weight = 0.028 adjusted weight = 0.001 neff = 401.89
config 57/450=[ -3.00 -0.75] weight = 0.002 adjusted weight = 0.000 neff = 555.87
config 58/450=[ 2.25 -2.25] weight = 0.014 adjusted weight = 0.000 neff = 391.48
config 59/450=[ -2.25 -2.25] weight = 0.010 adjusted weight = 0.000 neff = 526.72
config 60/450=[ -2.25 2.25] weight = 0.005 adjusted weight = 0.000 neff = 543.32
config 61/450=[ -1.50 3.00] weight = 0.020 adjusted weight = 0.000 neff = 521.74
config 62/450=[ -3.00 -1.50] weight = 0.002 adjusted weight = 0.000 neff = 553.41
config 63/450=[ 1.50 -3.00] weight = 0.032 adjusted weight = 0.001 neff = 411.97
config 64/450=[ 3.00 1.50] weight = 0.008 adjusted weight = 0.000 neff = 378.32
config 65/450=[ 1.50 3.00] weight = 0.066 adjusted weight = 0.001 neff = 426.77
config 66/450=[ -3.00 1.50] weight = 0.001 adjusted weight = 0.000 neff = 565.28
config 67/450=[ -1.50 -3.00] weight = 0.030 adjusted weight = 0.001 neff = 501.29
config 68/450=[ -2.25 -3.00] weight = 0.011 adjusted weight = 0.000 neff = 525.12
config 69/450=[ 3.00 -1.50] weight = 0.004 adjusted weight = 0.000 neff = 372.01
config 70/450=[ 2.25 -3.00] weight = 0.013 adjusted weight = 0.000 neff = 391.40
config 71/450=[ 0.00 -3.75] weight = 0.062 adjusted weight = 0.001 neff = 455.09
config 72/450=[ 3.00 -2.25] weight = 0.005 adjusted weight = 0.000 neff = 371.37
config 73/450=[ -3.00 2.25] weight = 0.001 adjusted weight = 0.000 neff = 568.62
config 74/450=[ 3.00 2.25] weight = 0.010 adjusted weight = 0.000 neff = 380.63
config 75/450=[ -3.00 -2.25] weight = 0.002 adjusted weight = 0.000 neff = 551.15
config 76/450=[ 2.25 3.00] weight = 0.034 adjusted weight = 0.001 neff = 404.62
config 77/450=[ 0.00 3.75] weight = 0.088 adjusted weight = 0.002 neff = 476.42
config 78/450=[ -2.25 3.00] weight = 0.005 adjusted weight = 0.000 neff = 546.90
config 79/450=[ 3.75 0.00] weight = 0.001 adjusted weight = 0.000 neff = 354.49
config 80/450=[ -0.75 3.75] weight = 0.046 adjusted weight = 0.001 neff = 500.75
config 81/450=[ 0.75 -3.75] weight = 0.050 adjusted weight = 0.001 neff = 433.36
config 82/450=[ 3.75 0.75] weight = 0.002 adjusted weight = 0.000 neff = 356.10
config 83/450=[ 3.75 -0.75] weight = 0.001 adjusted weight = 0.000 neff = 353.12
config 84/450=[ 0.75 3.75] weight = 0.101 adjusted weight = 0.002 neff = 452.80
config 85/450=[ -0.75 -3.75] weight = 0.052 adjusted weight = 0.001 neff = 477.51
config 86/450=[ 3.75 1.50] weight = 0.002 adjusted weight = 0.000 neff = 358.00
config 87/450=[ -1.50 3.75] weight = 0.017 adjusted weight = 0.000 neff = 525.42
config 88/450=[ -1.50 -3.75] weight = 0.030 adjusted weight = 0.001 neff = 500.54
config 89/450=[ 1.50 -3.75] weight = 0.031 adjusted weight = 0.001 neff = 412.22
config 90/450=[ 1.50 3.75] weight = 0.078 adjusted weight = 0.001 neff = 429.83
config 91/450=[ 3.75 -1.50] weight = 0.001 adjusted weight = 0.000 neff = 352.37
config 92/450=[ -3.00 -3.00] weight = 0.003 adjusted weight = 0.000 neff = 549.40
config 93/450=[ 3.00 -3.00] weight = 0.004 adjusted weight = 0.000 neff = 371.43
config 94/450=[ 3.00 3.00] weight = 0.012 adjusted weight = 0.000 neff = 383.21
config 95/450=[ -3.00 3.00] weight = 0.001 adjusted weight = 0.000 neff = 572.25
config 96/450=[ 2.25 -3.75] weight = 0.013 adjusted weight = 0.000 neff = 391.90
config 97/450=[ 2.25 3.75] weight = 0.042 adjusted weight = 0.001 neff = 407.54
config 98/450=[ -2.25 -3.75] weight = 0.011 adjusted weight = 0.000 neff = 524.18
config 99/450=[ 3.75 -2.25] weight = 0.001 adjusted weight = 0.000 neff = 352.19
config 100/450=[ 3.75 2.25] weight = 0.003 adjusted weight = 0.000 neff = 360.13
config 101/450=[ -2.25 3.75] weight = 0.004 adjusted weight = 0.000 neff = 550.52
config 102/450=[ 0.00 -4.50] weight = 0.057 adjusted weight = 0.001 neff = 455.59
config 103/450=[ 0.00 4.50] weight = 0.094 adjusted weight = 0.002 neff = 479.87
config 104/450=[ 4.50 0.00] weight = 0.000 adjusted weight = 0.000 neff = 335.34
config 105/450=[ 4.50 -0.75] weight = 0.000 adjusted weight = 0.000 neff = 334.11
config 106/450=[ 0.75 -4.50] weight = 0.045 adjusted weight = 0.001 neff = 434.19
config 107/450=[ -0.75 4.50] weight = 0.046 adjusted weight = 0.001 neff = 504.33
config 108/450=[ -0.75 -4.50] weight = 0.046 adjusted weight = 0.001 neff = 477.79
config 109/450=[ 0.75 4.50] weight = 0.111 adjusted weight = 0.002 neff = 456.16
config 110/450=[ 4.50 0.75] weight = 0.000 adjusted weight = 0.000 neff = 336.63
config 111/450=[ -1.50 4.50] weight = 0.016 adjusted weight = 0.000 neff = 529.16
config 112/450=[ 4.50 -1.50] weight = 0.000 adjusted weight = 0.000 neff = 333.54
config 113/450=[ -1.50 -4.50] weight = 0.028 adjusted weight = 0.001 neff = 500.47
config 114/450=[ 1.50 4.50] weight = 0.092 adjusted weight = 0.002 neff = 433.04
config 115/450=[ 4.50 1.50] weight = 0.000 adjusted weight = 0.000 neff = 338.48
config 116/450=[ 1.50 -4.50] weight = 0.029 adjusted weight = 0.001 neff = 413.28
config 117/450=[ 3.75 -3.00] weight = 0.001 adjusted weight = 0.000 neff = 352.35
config 118/450=[ -3.00 -3.75] weight = 0.003 adjusted weight = 0.000 neff = 548.21
config 119/450=[ 3.00 3.75] weight = 0.016 adjusted weight = 0.000 neff = 385.97
config 120/450=[ 3.75 3.00] weight = 0.003 adjusted weight = 0.000 neff = 362.55
config 121/450=[ -3.00 3.75] weight = 0.001 adjusted weight = 0.000 neff = 576.12
config 122/450=[ 3.00 -3.75] weight = 0.004 adjusted weight = 0.000 neff = 372.29
config 123/450=[ 4.50 -2.25] weight = 0.000 adjusted weight = 0.000 neff = 333.41
config 124/450=[ 2.25 -4.50] weight = 0.013 adjusted weight = 0.000 neff = 393.19
config 125/450=[ -2.25 -4.50] weight = 0.011 adjusted weight = 0.000 neff = 523.78
config 126/450=[ -2.25 4.50] weight = 0.003 adjusted weight = 0.000 neff = 554.42
config 127/450=[ 2.25 4.50] weight = 0.051 adjusted weight = 0.001 neff = 410.61
config 128/450=[ 4.50 2.25] weight = 0.001 adjusted weight = 0.000 neff = 340.41
config 129/450=[ 0.00 -5.25] weight = 0.048 adjusted weight = 0.001 neff = 457.00
config 130/450=[ 0.00 5.25] weight = 0.100 adjusted weight = 0.002 neff = 483.44
config 131/450=[ -0.75 -5.25] weight = 0.041 adjusted weight = 0.001 neff = 478.78
config 132/450=[ 3.75 3.75] weight = 0.004 adjusted weight = 0.000 neff = 365.29
config 133/450=[ -0.75 5.25] weight = 0.050 adjusted weight = 0.001 neff = 507.87
config 134/450=[ 0.75 -5.25] weight = 0.043 adjusted weight = 0.001 neff = 435.76
config 135/450=[ 0.75 5.25] weight = 0.128 adjusted weight = 0.002 neff = 459.59
config 136/450=[ 3.75 -3.75] weight = 0.001 adjusted weight = 0.000 neff = 353.34
config 137/450=[ -3.00 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 547.58
config 138/450=[ 3.00 -4.50] weight = 0.005 adjusted weight = 0.000 neff = 373.83
config 139/450=[ -3.00 4.50] weight = 0.000 adjusted weight = 0.000 neff = 579.89
config 140/450=[ 4.50 -3.00] weight = 0.000 adjusted weight = 0.000 neff = 334.04
config 141/450=[ 4.50 3.00] weight = 0.001 adjusted weight = 0.000 neff = 342.67
config 142/450=[ 3.00 4.50] weight = 0.020 adjusted weight = 0.000 neff = 388.96
config 143/450=[ 1.50 5.25] weight = 0.107 adjusted weight = 0.002 neff = 436.39
config 144/450=[ 1.50 -5.25] weight = 0.027 adjusted weight = 0.001 neff = 415.27
config 145/450=[ -1.50 -5.25] weight = 0.022 adjusted weight = 0.000 neff = 501.33
config 146/450=[ -1.50 5.25] weight = 0.016 adjusted weight = 0.000 neff = 532.77
config 147/450=[ 2.25 5.25] weight = 0.060 adjusted weight = 0.001 neff = 413.90
config 148/450=[ -2.25 -5.25] weight = 0.008 adjusted weight = 0.000 neff = 524.34
config 149/450=[ -2.25 5.25] weight = 0.003 adjusted weight = 0.000 neff = 558.20
config 150/450=[ 2.25 -5.25] weight = 0.012 adjusted weight = 0.000 neff = 395.53
config 151/450=[ 4.50 3.75] weight = 0.001 adjusted weight = 0.000 neff = 345.12
config 152/450=[ 3.75 4.50] weight = 0.006 adjusted weight = 0.000 neff = 368.00
config 153/450=[ 3.75 -4.50] weight = 0.001 adjusted weight = 0.000 neff = 355.23
config 154/450=[ 4.50 -3.75] weight = 0.000 adjusted weight = 0.000 neff = 335.24
config 155/450=[ 0.00 -6.00] weight = 0.040 adjusted weight = 0.001 neff = 459.38
config 156/450=[ 0.00 6.00] weight = 0.105 adjusted weight = 0.002 neff = 487.13
config 157/450=[ 0.75 -6.00] weight = 0.036 adjusted weight = 0.001 neff = 438.51
config 158/450=[ 3.00 5.25] weight = 0.027 adjusted weight = 0.001 neff = 391.94
config 159/450=[ -3.00 5.25] weight = 0.000 adjusted weight = 0.000 neff = 583.86
config 160/450=[ -0.75 -6.00] weight = 0.033 adjusted weight = 0.001 neff = 480.81
config 161/450=[ 3.00 -5.25] weight = 0.005 adjusted weight = 0.000 neff = 376.43
config 162/450=[ -3.00 -5.25] weight = 0.002 adjusted weight = 0.000 neff = 547.83
config 163/450=[ 0.75 6.00] weight = 0.144 adjusted weight = 0.003 neff = 463.16
config 164/450=[ -1.50 -6.00] weight = 0.019 adjusted weight = 0.000 neff = 502.90
config 165/450=[ -0.75 6.00] weight = 0.050 adjusted weight = 0.001 neff = 511.64
config 166/450=[ 1.50 6.00] weight = 0.131 adjusted weight = 0.002 neff = 439.79
config 167/450=[ -1.50 6.00] weight = 0.015 adjusted weight = 0.000 neff = 536.64
config 168/450=[ 1.50 -6.00] weight = 0.024 adjusted weight = 0.000 neff = 418.34
config 169/450=[ 4.50 -4.50] weight = 0.000 adjusted weight = 0.000 neff = 337.41
config 170/450=[ 4.50 4.50] weight = 0.001 adjusted weight = 0.000 neff = 347.80
config 171/450=[ 2.25 -6.00] weight = 0.011 adjusted weight = 0.000 neff = 398.96
config 172/450=[ -2.25 -6.00] weight = 0.007 adjusted weight = 0.000 neff = 525.57
config 173/450=[ -2.25 6.00] weight = 0.003 adjusted weight = 0.000 neff = 562.06
config 174/450=[ 2.25 6.00] weight = 0.082 adjusted weight = 0.002 neff = 417.09
config 175/450=[ 3.75 -5.25] weight = 0.001 adjusted weight = 0.000 neff = 358.12
config 176/450=[ 3.75 5.25] weight = 0.008 adjusted weight = 0.000 neff = 370.92
config 177/450=[ -3.00 -6.00] weight = 0.002 adjusted weight = 0.000 neff = 548.73
config 178/450=[ 3.00 6.00] weight = 0.034 adjusted weight = 0.001 neff = 395.20
config 179/450=[ 3.00 -6.00] weight = 0.004 adjusted weight = 0.000 neff = 380.31
config 180/450=[ 0.00 -6.75] weight = 0.030 adjusted weight = 0.001 neff = 462.92
config 181/450=[ -3.00 6.00] weight = 0.000 adjusted weight = 0.000 neff = 587.81
config 182/450=[ 0.00 6.75] weight = 0.113 adjusted weight = 0.002 neff = 490.86
config 183/450=[ -0.75 6.75] weight = 0.047 adjusted weight = 0.001 neff = 515.56
config 184/450=[ 0.75 -6.75] weight = 0.026 adjusted weight = 0.000 neff = 442.56
config 185/450=[ 0.75 6.75] weight = 0.151 adjusted weight = 0.003 neff = 466.91
config 186/450=[ -0.75 -6.75] weight = 0.022 adjusted weight = 0.000 neff = 484.05
config 187/450=[ -1.50 6.75] weight = 0.012 adjusted weight = 0.000 neff = 540.74
config 188/450=[ 4.50 5.25] weight = 0.002 adjusted weight = 0.000 neff = 350.53
config 189/450=[ 1.50 6.75] weight = 0.146 adjusted weight = 0.003 neff = 443.42
config 190/450=[ 1.50 -6.75] weight = 0.019 adjusted weight = 0.000 neff = 422.70
config 191/450=[ 4.50 -5.25] weight = 0.000 adjusted weight = 0.000 neff = 340.75
config 192/450=[ 3.75 6.00] weight = 0.011 adjusted weight = 0.000 neff = 373.85
config 193/450=[ -1.50 -6.75] weight = 0.011 adjusted weight = 0.000 neff = 505.87
config 194/450=[ -2.25 -6.75] weight = 0.004 adjusted weight = 0.000 neff = 528.16
config 195/450=[ 3.75 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 362.20
config 196/450=[ -2.25 6.75] weight = 0.002 adjusted weight = 0.000 neff = 566.25
config 197/450=[ 2.25 6.75] weight = 0.102 adjusted weight = 0.002 neff = 420.51
config 198/450=[ 2.25 -6.75] weight = 0.010 adjusted weight = 0.000 neff = 403.65
config 199/450=[ 3.00 6.75] weight = 0.048 adjusted weight = 0.001 neff = 398.37
config 200/450=[ -3.00 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 550.78
config 201/450=[ -3.00 6.75] weight = 0.000 adjusted weight = 0.000 neff = 592.00
config 202/450=[ 3.00 -6.75] weight = 0.004 adjusted weight = 0.000 neff = 385.35
config 203/450=[ 0.00 7.50] weight = 0.119 adjusted weight = 0.002 neff = 494.67
config 204/450=[ 4.50 -6.00] weight = 0.000 adjusted weight = 0.000 neff = 345.12
config 205/450=[ 4.50 6.00] weight = 0.003 adjusted weight = 0.000 neff = 353.37
config 206/450=[ 0.00 -7.50] weight = 0.018 adjusted weight = 0.000 neff = 467.92
config 207/450=[ -0.75 -7.50] weight = 0.013 adjusted weight = 0.000 neff = 488.60
config 208/450=[ -0.75 7.50] weight = 0.043 adjusted weight = 0.001 neff = 519.57
config 209/450=[ 0.75 -7.50] weight = 0.018 adjusted weight = 0.000 neff = 447.97
config 210/450=[ 0.75 7.50] weight = 0.184 adjusted weight = 0.003 neff = 470.50
config 211/450=[ 1.50 -7.50] weight = 0.014 adjusted weight = 0.000 neff = 428.55
config 212/450=[ 1.50 7.50] weight = 0.191 adjusted weight = 0.004 neff = 446.89
config 213/450=[ -1.50 -7.50] weight = 0.007 adjusted weight = 0.000 neff = 509.85
config 214/450=[ -1.50 7.50] weight = 0.013 adjusted weight = 0.000 neff = 544.56
config 215/450=[ 3.75 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 367.66
config 216/450=[ 3.75 6.75] weight = 0.016 adjusted weight = 0.000 neff = 376.97
config 217/450=[ -2.25 7.50] weight = 0.002 adjusted weight = 0.000 neff = 570.15
config 218/450=[ 2.25 -7.50] weight = 0.008 adjusted weight = 0.000 neff = 409.99
config 219/450=[ 2.25 7.50] weight = 0.131 adjusted weight = 0.002 neff = 423.97
config 220/450=[ -2.25 -7.50] weight = 0.002 adjusted weight = 0.000 neff = 531.68
config 221/450=[ 3.00 -7.50] weight = 0.004 adjusted weight = 0.000 neff = 391.95
config 222/450=[ -3.00 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 554.09
config 223/450=[ 3.00 7.50] weight = 0.060 adjusted weight = 0.001 neff = 401.80
config 224/450=[ 4.50 -6.75] weight = 0.000 adjusted weight = 0.000 neff = 350.87
config 225/450=[ 4.50 6.75] weight = 0.004 adjusted weight = 0.000 neff = 356.38
config 226/450=[ 0.00 -8.25] weight = 0.009 adjusted weight = 0.000 neff = 474.56
config 227/450=[ 0.00 8.25] weight = 0.125 adjusted weight = 0.002 neff = 498.54
config 228/450=[ 0.75 -8.25] weight = 0.010 adjusted weight = 0.000 neff = 455.03
config 229/450=[ -0.75 8.25] weight = 0.047 adjusted weight = 0.001 neff = 523.37
config 230/450=[ 0.75 8.25] weight = 0.206 adjusted weight = 0.004 neff = 474.27
config 231/450=[ -0.75 -8.25] weight = 0.006 adjusted weight = 0.000 neff = 494.76
config 232/450=[ 1.50 8.25] weight = 0.225 adjusted weight = 0.004 neff = 450.57
config 233/450=[ 3.75 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 374.79
config 234/450=[ -1.50 -8.25] weight = 0.003 adjusted weight = 0.000 neff = 515.54
config 235/450=[ 3.75 7.50] weight = 0.021 adjusted weight = 0.000 neff = 380.25
config 236/450=[ 1.50 -8.25] weight = 0.008 adjusted weight = 0.000 neff = 436.18
config 237/450=[ -2.25 8.25] weight = 0.001 adjusted weight = 0.000 neff = 574.42
config 238/450=[ -1.50 8.25] weight = 0.010 adjusted weight = 0.000 neff = 548.84
config 239/450=[ 2.25 8.25] weight = 0.162 adjusted weight = 0.003 neff = 427.53
config 240/450=[ -2.25 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 536.86
config 241/450=[ 2.25 -8.25] weight = 0.005 adjusted weight = 0.000 neff = 418.10
config 242/450=[ 4.50 7.50] weight = 0.005 adjusted weight = 0.000 neff = 359.52
config 243/450=[ 4.50 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 358.27
config 244/450=[ 3.00 -8.25] weight = 0.003 adjusted weight = 0.000 neff = 400.48
config 245/450=[ 3.00 8.25] weight = 0.084 adjusted weight = 0.002 neff = 405.13
config 246/450=[ 0.00 -9.00] weight = 0.003 adjusted weight = 0.000 neff = 483.11
config 247/450=[ -3.00 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 558.71
config 248/450=[ 0.00 9.00] weight = 0.124 adjusted weight = 0.002 neff = 502.53
config 249/450=[ 0.75 9.00] weight = 0.234 adjusted weight = 0.004 neff = 478.06
config 250/450=[ -0.75 -9.00] weight = 0.002 adjusted weight = 0.000 neff = 502.81
config 251/450=[ -0.75 9.00] weight = 0.046 adjusted weight = 0.001 neff = 527.37
config 252/450=[ 0.75 -9.00] weight = 0.004 adjusted weight = 0.000 neff = 464.13
config 253/450=[ 3.75 8.25] weight = 0.031 adjusted weight = 0.001 neff = 383.46
config 254/450=[ -1.50 9.00] weight = 0.009 adjusted weight = 0.000 neff = 552.85
config 255/450=[ 3.75 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 383.67
config 256/450=[ -1.50 -9.00] weight = 0.001 adjusted weight = 0.000 neff = 522.94
config 257/450=[ 1.50 -9.00] weight = 0.004 adjusted weight = 0.000 neff = 445.81
config 258/450=[ 1.50 9.00] weight = 0.271 adjusted weight = 0.005 neff = 454.26
config 259/450=[ -2.25 9.00] weight = 0.001 adjusted weight = 0.000 neff = 578.37
config 260/450=[ -2.25 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 543.84
config 261/450=[ 2.25 9.00] weight = 0.206 adjusted weight = 0.004 neff = 431.12
config 262/450=[ 2.25 -9.00] weight = 0.003 adjusted weight = 0.000 neff = 428.10
config 263/450=[ 4.50 8.25] weight = 0.008 adjusted weight = 0.000 neff = 362.73
config 264/450=[ 4.50 -8.25] weight = 0.000 adjusted weight = 0.000 neff = 367.65
config 265/450=[ 3.00 -9.00] weight = 0.002 adjusted weight = 0.000 neff = 411.09
config 266/450=[ 3.00 9.00] weight = 0.103 adjusted weight = 0.002 neff = 408.74
config 267/450=[ 0.00 9.75] weight = 0.130 adjusted weight = 0.002 neff = 506.46
config 268/450=[ 0.00 -9.75] weight = 0.001 adjusted weight = 0.000 neff = 493.79
config 269/450=[ 3.75 -9.00] weight = 0.001 adjusted weight = 0.000 neff = 394.77
config 270/450=[ 3.75 9.00] weight = 0.041 adjusted weight = 0.001 neff = 386.89
config 271/450=[ -0.75 -9.75] weight = 0.000 adjusted weight = 0.000 neff = 512.87
config 272/450=[ -0.75 9.75] weight = 0.043 adjusted weight = 0.001 neff = 531.45
config 273/450=[ 0.75 9.75] weight = 0.243 adjusted weight = 0.004 neff = 482.02
config 274/450=[ 0.75 -9.75] weight = 0.001 adjusted weight = 0.000 neff = 475.35
config 275/450=[ -1.50 9.75] weight = 0.009 adjusted weight = 0.000 neff = 556.86
config 276/450=[ 1.50 9.75] weight = 0.321 adjusted weight = 0.006 neff = 458.01
config 277/450=[ 1.50 -9.75] weight = 0.001 adjusted weight = 0.000 neff = 457.67
config 278/450=[ 2.25 -9.75] weight = 0.001 adjusted weight = 0.000 neff = 440.46
config 279/450=[ -1.50 -9.75] weight = 0.000 adjusted weight = 0.000 neff = 532.40
config 280/450=[ 2.25 9.75] weight = 0.246 adjusted weight = 0.005 neff = 434.84
config 281/450=[ -2.25 9.75] weight = 0.001 adjusted weight = 0.000 neff = 582.60
config 282/450=[ 4.50 9.00] weight = 0.011 adjusted weight = 0.000 neff = 365.99
config 283/450=[ 4.50 -9.00] weight = 0.000 adjusted weight = 0.000 neff = 379.09
config 284/450=[ 3.00 9.75] weight = 0.141 adjusted weight = 0.003 neff = 412.21
config 285/450=[ 3.00 -9.75] weight = 0.001 adjusted weight = 0.000 neff = 424.00
config 286/450=[ 3.75 9.75] weight = 0.056 adjusted weight = 0.001 neff = 390.31
config 287/450=[ 3.75 -9.75] weight = 0.000 adjusted weight = 0.000 neff = 408.44
config 288/450=[ 0.00 10.50] weight = 0.136 adjusted weight = 0.003 neff = 510.41
config 289/450=[ -1.50 10.50] weight = 0.008 adjusted weight = 0.000 neff = 561.03
config 290/450=[ 0.75 10.50] weight = 0.262 adjusted weight = 0.005 neff = 485.94
config 291/450=[ -0.75 10.50] weight = 0.040 adjusted weight = 0.001 neff = 535.55
config 292/450=[ 1.50 10.50] weight = 0.376 adjusted weight = 0.007 neff = 461.81
config 293/450=[ -2.25 10.50] weight = 0.001 adjusted weight = 0.000 neff = 586.74
config 294/450=[ 2.25 10.50] weight = 0.331 adjusted weight = 0.006 neff = 438.40
config 295/450=[ 4.50 9.75] weight = 0.017 adjusted weight = 0.000 neff = 369.14
config 296/450=[ 4.50 -9.75] weight = 0.000 adjusted weight = 0.000 neff = 393.21
config 297/450=[ 3.00 10.50] weight = 0.190 adjusted weight = 0.004 neff = 415.74
config 298/450=[ 3.75 10.50] weight = 0.085 adjusted weight = 0.002 neff = 393.63
config 299/450=[ 0.00 11.25] weight = 0.132 adjusted weight = 0.002 neff = 514.48
config 300/450=[ -0.75 11.25] weight = 0.032 adjusted weight = 0.001 neff = 539.84
config 301/450=[ 0.75 11.25] weight = 0.304 adjusted weight = 0.006 neff = 489.77
config 302/450=[ 1.50 11.25] weight = 0.432 adjusted weight = 0.008 neff = 465.65
config 303/450=[ -1.50 11.25] weight = 0.007 adjusted weight = 0.000 neff = 565.10
config 304/450=[ 4.50 10.50] weight = 0.025 adjusted weight = 0.000 neff = 372.41
config 305/450=[ -2.25 11.25] weight = 0.001 adjusted weight = 0.000 neff = 590.97
config 306/450=[ 2.25 11.25] weight = 0.374 adjusted weight = 0.007 neff = 442.26
config 307/450=[ 3.00 11.25] weight = 0.254 adjusted weight = 0.005 neff = 419.32
config 308/450=[ 3.75 11.25] weight = 0.107 adjusted weight = 0.002 neff = 397.25
config 309/450=[ 0.00 12.00] weight = 0.135 adjusted weight = 0.003 neff = 518.48
config 310/450=[ -0.75 12.00] weight = 0.035 adjusted weight = 0.001 neff = 543.71
config 311/450=[ 0.75 12.00] weight = 0.322 adjusted weight = 0.006 neff = 493.74
config 312/450=[ -1.50 12.00] weight = 0.005 adjusted weight = 0.000 neff = 569.41
config 313/450=[ 1.50 12.00] weight = 0.492 adjusted weight = 0.009 neff = 469.52
config 314/450=[ 4.50 11.25] weight = 0.036 adjusted weight = 0.001 neff = 375.77
config 315/450=[ -2.25 12.00] weight = 0.001 adjusted weight = 0.000 neff = 595.21
config 316/450=[ 2.25 12.00] weight = 0.486 adjusted weight = 0.009 neff = 445.92
config 317/450=[ 3.00 12.00] weight = 0.335 adjusted weight = 0.006 neff = 422.92
config 318/450=[ 3.75 12.00] weight = 0.145 adjusted weight = 0.003 neff = 400.78
config 319/450=[ 0.00 12.75] weight = 0.131 adjusted weight = 0.002 neff = 522.56
config 320/450=[ 0.75 12.75] weight = 0.335 adjusted weight = 0.006 neff = 497.73
config 321/450=[ -0.75 12.75] weight = 0.031 adjusted weight = 0.001 neff = 547.87
config 322/450=[ 4.50 12.00] weight = 0.051 adjusted weight = 0.001 neff = 379.20
config 323/450=[ -1.50 12.75] weight = 0.005 adjusted weight = 0.000 neff = 573.50
config 324/450=[ 1.50 12.75] weight = 0.498 adjusted weight = 0.009 neff = 473.56
config 325/450=[ -2.25 12.75] weight = 0.000 adjusted weight = 0.000 neff = 599.45
config 326/450=[ 2.25 12.75] weight = 0.586 adjusted weight = 0.011 neff = 449.69
config 327/450=[ 3.00 12.75] weight = 0.412 adjusted weight = 0.008 neff = 426.65
config 328/450=[ 3.75 12.75] weight = 0.212 adjusted weight = 0.004 neff = 404.21
config 329/450=[ 0.00 13.50] weight = 0.123 adjusted weight = 0.002 neff = 526.66
config 330/450=[ 4.50 12.75] weight = 0.076 adjusted weight = 0.001 neff = 382.54
config 331/450=[ 0.75 13.50] weight = 0.340 adjusted weight = 0.006 neff = 501.75
config 332/450=[ -0.75 13.50] weight = 0.027 adjusted weight = 0.000 neff = 552.08
config 333/450=[ -1.50 13.50] weight = 0.003 adjusted weight = 0.000 neff = 577.93
config 334/450=[ 1.50 13.50] weight = 0.598 adjusted weight = 0.011 neff = 477.34
config 335/450=[ -2.25 13.50] weight = 0.000 adjusted weight = 0.000 neff = 603.73
config 336/450=[ 2.25 13.50] weight = 0.681 adjusted weight = 0.013 neff = 453.52
config 337/450=[ 3.75 13.50] weight = 0.278 adjusted weight = 0.005 neff = 407.80
config 338/450=[ 3.00 13.50] weight = 0.511 adjusted weight = 0.009 neff = 430.36
config 339/450=[ 4.50 13.50] weight = 0.093 adjusted weight = 0.002 neff = 386.20
config 340/450=[ 0.00 14.25] weight = 0.113 adjusted weight = 0.002 neff = 530.78
config 341/450=[ -0.75 14.25] weight = 0.023 adjusted weight = 0.000 neff = 556.26
config 342/450=[ 0.75 14.25] weight = 0.337 adjusted weight = 0.006 neff = 505.79
config 343/450=[ -1.50 14.25] weight = 0.003 adjusted weight = 0.000 neff = 582.17
config 344/450=[ 1.50 14.25] weight = 0.637 adjusted weight = 0.012 neff = 481.29
config 345/450=[ 2.25 14.25] weight = 0.776 adjusted weight = 0.014 neff = 457.37
config 346/450=[ -2.25 14.25] weight = 0.000 adjusted weight = 0.000 neff = 608.01
config 347/450=[ 3.00 14.25] weight = 0.620 adjusted weight = 0.011 neff = 434.10
config 348/450=[ 3.75 14.25] weight = 0.358 adjusted weight = 0.007 neff = 411.43
config 349/450=[ 4.50 14.25] weight = 0.142 adjusted weight = 0.003 neff = 389.51
config 350/450=[ 0.00 15.00] weight = 0.101 adjusted weight = 0.002 neff = 534.92
config 351/450=[ 0.75 15.00] weight = 0.324 adjusted weight = 0.006 neff = 509.85
config 352/450=[ -0.75 15.00] weight = 0.019 adjusted weight = 0.000 neff = 560.47
config 353/450=[ 1.50 15.00] weight = 0.655 adjusted weight = 0.012 neff = 485.27
config 354/450=[ -1.50 15.00] weight = 0.002 adjusted weight = 0.000 neff = 586.22
config 355/450=[ 2.25 15.00] weight = 0.837 adjusted weight = 0.015 neff = 461.29
config 356/450=[ 3.00 15.00] weight = 0.743 adjusted weight = 0.014 neff = 437.84
config 357/450=[ 3.75 15.00] weight = 0.448 adjusted weight = 0.008 neff = 415.08
config 358/450=[ 4.50 15.00] weight = 0.174 adjusted weight = 0.003 neff = 393.16
config 359/450=[ 0.00 15.75] weight = 0.087 adjusted weight = 0.002 neff = 539.08
config 360/450=[ -0.75 15.75] weight = 0.015 adjusted weight = 0.000 neff = 564.65
config 361/450=[ 0.75 15.75] weight = 0.300 adjusted weight = 0.006 neff = 513.94
config 362/450=[ -1.50 15.75] weight = 0.002 adjusted weight = 0.000 neff = 590.49
config 363/450=[ 1.50 15.75] weight = 0.660 adjusted weight = 0.012 neff = 489.26
config 364/450=[ 2.25 15.75] weight = 0.922 adjusted weight = 0.017 neff = 465.14
config 365/450=[ 3.00 15.75] weight = 0.861 adjusted weight = 0.016 neff = 441.62
config 366/450=[ 3.75 15.75] weight = 0.518 adjusted weight = 0.010 neff = 418.83
config 367/450=[ 4.50 15.75] weight = 0.240 adjusted weight = 0.004 neff = 396.60
config 368/450=[ 0.00 16.50] weight = 0.072 adjusted weight = 0.001 neff = 543.25
config 369/450=[ 0.75 16.50] weight = 0.270 adjusted weight = 0.005 neff = 518.03
config 370/450=[ -0.75 16.50] weight = 0.011 adjusted weight = 0.000 neff = 568.92
config 371/450=[ 1.50 16.50] weight = 0.631 adjusted weight = 0.012 neff = 493.28
config 372/450=[ -1.50 16.50] weight = 0.001 adjusted weight = 0.000 neff = 594.76
config 373/450=[ 2.25 16.50] weight = 0.958 adjusted weight = 0.018 neff = 469.05
config 374/450=[ 3.00 16.50] weight = 0.937 adjusted weight = 0.017 neff = 445.45
config 375/450=[ 3.75 16.50] weight = 0.637 adjusted weight = 0.012 neff = 422.45
config 376/450=[ 4.50 16.50] weight = 0.276 adjusted weight = 0.005 neff = 400.30
config 377/450=[ -0.75 17.25] weight = 0.008 adjusted weight = 0.000 neff = 573.12
config 378/450=[ 0.00 17.25] weight = 0.057 adjusted weight = 0.001 neff = 547.43
config 379/450=[ 0.75 17.25] weight = 0.229 adjusted weight = 0.004 neff = 522.15
config 380/450=[ 1.50 17.25] weight = 0.581 adjusted weight = 0.011 neff = 497.31
config 381/450=[ 2.25 17.25] weight = 0.944 adjusted weight = 0.017 neff = 472.99
config 382/450=[ -1.50 17.25] weight = 0.001 adjusted weight = 0.000 neff = 599.25
config 383/450=[ 3.00 17.25] weight = 1.000 adjusted weight = 0.019 neff = 449.26
config 384/450=[ 3.75 17.25] weight = 0.714 adjusted weight = 0.013 neff = 426.18
config 385/450=[ 4.50 17.25] weight = 0.353 adjusted weight = 0.007 neff = 403.78
config 386/450=[ 0.00 18.00] weight = 0.043 adjusted weight = 0.001 neff = 551.62
config 387/450=[ 0.75 18.00] weight = 0.186 adjusted weight = 0.003 neff = 526.27
config 388/450=[ -0.75 18.00] weight = 0.006 adjusted weight = 0.000 neff = 577.41
config 389/450=[ 1.50 18.00] weight = 0.509 adjusted weight = 0.009 neff = 501.35
config 390/450=[ -1.50 18.00] weight = 0.000 adjusted weight = 0.000 neff = 603.34
config 391/450=[ 2.25 18.00] weight = 0.884 adjusted weight = 0.016 neff = 476.94
config 392/450=[ 3.00 18.00] weight = 0.986 adjusted weight = 0.018 neff = 453.14
config 393/450=[ 4.50 18.00] weight = 0.366 adjusted weight = 0.007 neff = 407.54
config 394/450=[ 3.75 18.00] weight = 0.759 adjusted weight = 0.014 neff = 429.92
config 395/450=[ 0.00 18.75] weight = 0.030 adjusted weight = 0.001 neff = 555.84
config 396/450=[ -0.75 18.75] weight = 0.004 adjusted weight = 0.000 neff = 581.64
config 397/450=[ 0.75 18.75] weight = 0.138 adjusted weight = 0.003 neff = 530.44
config 398/450=[ -1.50 18.75] weight = 0.000 adjusted weight = 0.000 neff = 607.77
config 399/450=[ 1.50 18.75] weight = 0.416 adjusted weight = 0.008 neff = 505.41
config 400/450=[ 2.25 18.75] weight = 0.770 adjusted weight = 0.014 neff = 480.93
config 401/450=[ 3.00 18.75] weight = 0.937 adjusted weight = 0.017 neff = 456.99
config 402/450=[ 3.75 18.75] weight = 0.718 adjusted weight = 0.013 neff = 433.77
config 403/450=[ 4.50 18.75] weight = 0.419 adjusted weight = 0.008 neff = 411.06
config 404/450=[ 0.00 19.50] weight = 0.019 adjusted weight = 0.000 neff = 560.05
config 405/450=[ -0.75 19.50] weight = 0.002 adjusted weight = 0.000 neff = 585.91
config 406/450=[ 0.75 19.50] weight = 0.098 adjusted weight = 0.002 neff = 534.58
config 407/450=[ 1.50 19.50] weight = 0.312 adjusted weight = 0.006 neff = 509.50
config 408/450=[ 2.25 19.50] weight = 0.629 adjusted weight = 0.012 neff = 484.91
config 409/450=[ 3.00 19.50] weight = 0.803 adjusted weight = 0.015 neff = 460.91
config 410/450=[ 3.75 19.50] weight = 0.698 adjusted weight = 0.013 neff = 437.48
config 411/450=[ 4.50 19.50] weight = 0.411 adjusted weight = 0.008 neff = 414.74
config 412/450=[ 0.00 20.25] weight = 0.011 adjusted weight = 0.000 neff = 564.28
config 413/450=[ -0.75 20.25] weight = 0.001 adjusted weight = 0.000 neff = 590.18
config 414/450=[ 0.75 20.25] weight = 0.063 adjusted weight = 0.001 neff = 538.75
config 415/450=[ 1.50 20.25] weight = 0.215 adjusted weight = 0.004 neff = 513.60
config 416/450=[ 2.25 20.25] weight = 0.465 adjusted weight = 0.009 neff = 488.92
config 417/450=[ 3.00 20.25] weight = 0.636 adjusted weight = 0.012 neff = 464.82
config 418/450=[ 3.75 20.25] weight = 0.590 adjusted weight = 0.011 neff = 441.29
config 419/450=[ 4.50 20.25] weight = 0.368 adjusted weight = 0.007 neff = 418.43
config 420/450=[ 0.00 21.00] weight = 0.006 adjusted weight = 0.000 neff = 568.52
config 421/450=[ 0.75 21.00] weight = 0.036 adjusted weight = 0.001 neff = 542.92
config 422/450=[ -0.75 21.00] weight = 0.001 adjusted weight = 0.000 neff = 594.51
config 423/450=[ 1.50 21.00] weight = 0.132 adjusted weight = 0.002 neff = 517.71
config 424/450=[ 2.25 21.00] weight = 0.308 adjusted weight = 0.006 neff = 492.95
config 425/450=[ 3.00 21.00] weight = 0.458 adjusted weight = 0.008 neff = 468.73
config 426/450=[ 3.75 21.00] weight = 0.435 adjusted weight = 0.008 neff = 445.16
config 427/450=[ 4.50 21.00] weight = 0.295 adjusted weight = 0.005 neff = 422.15
config 428/450=[ 0.00 21.75] weight = 0.003 adjusted weight = 0.000 neff = 572.77
config 429/450=[ -0.75 21.75] weight = 0.000 adjusted weight = 0.000 neff = 598.76
config 430/450=[ 0.75 21.75] weight = 0.018 adjusted weight = 0.000 neff = 547.12
config 431/450=[ 1.50 21.75] weight = 0.071 adjusted weight = 0.001 neff = 521.83
config 432/450=[ 2.25 21.75] weight = 0.178 adjusted weight = 0.003 neff = 496.99
config 433/450=[ 3.00 21.75] weight = 0.279 adjusted weight = 0.005 neff = 472.70
config 434/450=[ 3.75 21.75] weight = 0.294 adjusted weight = 0.005 neff = 448.96
config 435/450=[ 4.50 21.75] weight = 0.207 adjusted weight = 0.004 neff = 425.88
config 436/450=[ 0.00 22.50] weight = 0.001 adjusted weight = 0.000 neff = 577.03
config 437/450=[ 0.75 22.50] weight = 0.008 adjusted weight = 0.000 neff = 551.31
config 438/450=[ 1.50 22.50] weight = 0.033 adjusted weight = 0.001 neff = 525.96
config 439/450=[ 2.25 22.50] weight = 0.088 adjusted weight = 0.002 neff = 501.04
config 440/450=[ 3.00 22.50] weight = 0.148 adjusted weight = 0.003 neff = 476.65
config 441/450=[ 3.75 22.50] weight = 0.165 adjusted weight = 0.003 neff = 452.83
config 442/450=[ 4.50 22.50] weight = 0.123 adjusted weight = 0.002 neff = 429.63
config 443/450=[ 0.00 23.25] weight = 0.000 adjusted weight = 0.000 neff = 581.30
config 444/450=[ 0.75 23.25] weight = 0.003 adjusted weight = 0.000 neff = 555.53
config 445/450=[ 1.50 23.25] weight = 0.012 adjusted weight = 0.000 neff = 530.11
config 446/450=[ 2.25 23.25] weight = 0.035 adjusted weight = 0.001 neff = 505.11
config 447/450=[ 3.00 23.25] weight = 0.064 adjusted weight = 0.001 neff = 480.63
config 448/450=[ 3.75 23.25] weight = 0.076 adjusted weight = 0.001 neff = 456.71
config 449/450=[ 4.50 23.25] weight = 0.060 adjusted weight = 0.001 neff = 433.41
Done.
Expected effective number of parameters: 459.245(34.657), eqv.#replicates: 6.628
DIC:
Mean of Deviance................. 2390.92
Deviance at Mean................. 2006.98
Effective number of parameters... 383.932
DIC.............................. 2774.85
Marginal likelihood: Integration -1141.927263 Gaussian-approx -1143.790800
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e1d7c3f/Model.ini]
Preparations : 0.119 seconds
Approx inference: 3658.673 seconds [0.1|0.0|0.3|88.6|11.0]%
Output : 2.020 seconds
---------------------------------
Total : 3660.812 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d325978497] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37021d690]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d33d8dc173]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37021d690]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 2, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3390d0701] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d329923ec4]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d371844614]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3646efea]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d37e81e8c8] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32d9e35b] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d32edd6cd3] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d34b13a8ae] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d377a75e03] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3d0d5454] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3661b5d7d] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d3e96edea] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/data.files/filee1d356dda521] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fe541d11d80
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1499.613620 fn= 1 theta= 4.010000 4.000000 range=[-1.818 3.486]
max.logdens= -1499.545111 fn= 2 theta= 4.000000 3.990000 range=[-1.819 3.488]
max.logdens= -1499.524955 fn= 3 theta= 3.990000 4.000000 range=[-1.818 3.486]
max.logdens= -1491.395792 fn= 5 theta= 3.106496 3.550946 range=[-1.833 3.618]
max.logdens= -1491.349251 fn= 6 theta= 3.106496 3.540946 range=[-1.834 3.621]
max.logdens= -1491.268049 fn= 8 theta= 3.096496 3.550946 range=[-1.833 3.618]
max.logdens= -1484.714374 fn= 11 theta= 2.704419 3.348871 range=[-1.842 3.689]
max.logdens= -1484.537310 fn= 12 theta= 2.694419 3.348871 range=[-1.842 3.689]
max.logdens= -1475.735325 fn= 16 theta= 2.322446 3.156900 range=[-1.852 3.763]
max.logdens= -1475.667976 fn= 17 theta= 2.322446 3.146900 range=[-1.853 3.766]
max.logdens= -1475.466308 fn= 18 theta= 2.312446 3.156900 range=[-1.852 3.763]
max.logdens= -1464.094411 fn= 21 theta= 1.959571 2.974528 range=[-1.863 3.837]
max.logdens= -1464.039780 fn= 22 theta= 1.959571 2.964528 range=[-1.864 3.840]
max.logdens= -1463.753806 fn= 23 theta= 1.949571 2.974528 range=[-1.863 3.838]
max.logdens= -1449.864422 fn= 26 theta= 1.614840 2.801274 range=[-1.876 3.909]
max.logdens= -1449.807853 fn= 27 theta= 1.614840 2.791274 range=[-1.876 3.912]
max.logdens= -1449.433316 fn= 28 theta= 1.604840 2.801274 range=[-1.876 3.909]
max.logdens= -1433.620647 fn= 31 theta= 1.287346 2.636683 range=[-1.889 3.978]
max.logdens= -1433.117658 fn= 32 theta= 1.277346 2.636683 range=[-1.890 3.979]
max.logdens= -1416.609623 fn= 36 theta= 0.976227 2.480322 range=[-1.906 4.047]
max.logdens= -1416.077252 fn= 38 theta= 0.966227 2.480322 range=[-1.906 4.047]
max.logdens= -1400.552203 fn= 41 theta= 0.680663 2.331779 range=[-1.925 4.112]
max.logdens= -1400.051883 fn= 42 theta= 0.670663 2.331779 range=[-1.926 4.113]
max.logdens= -1387.302429 fn= 46 theta= 0.399878 2.190662 range=[-1.951 4.643]
max.logdens= -1386.903239 fn= 47 theta= 0.389878 2.190662 range=[-1.951 4.662]
max.logdens= -1378.430861 fn= 51 theta= 0.133132 2.056602 range=[-1.984 5.106]
max.logdens= -1378.413022 fn= 52 theta= 0.133132 2.046602 range=[-1.985 5.108]
max.logdens= -1378.197017 fn= 53 theta= 0.123132 2.056602 range=[-1.985 5.121]
max.logdens= -1374.928157 fn= 56 theta= -0.120277 1.929245 range=[-2.028 5.440]
max.logdens= -1374.905624 fn= 57 theta= -0.130277 1.929245 range=[-2.030 5.451]
max.logdens= -1374.889943 fn= 62 theta= -0.147336 1.915646 range=[-2.033 5.471]
max.logdens= -1374.887903 fn= 63 theta= -0.147336 1.905646 range=[-2.034 5.472]
Iter=1 |grad|=0.126 |x-x.old|=3.28 |f-f.old|=125
max.logdens= -1374.856348 fn= 70 theta= -0.147396 1.915505 range=[-2.033 5.471]
Iter=2 |grad|=0.127 |x-x.old|=0.000108(pass) |f-f.old|=0.00179 Reached numerical limit!
Number of function evaluations = 84
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
Mode not sufficient accurate; switch to a stupid local search strategy.
105.514389 9.014149
9.014149 18.117062
Eigenvectors of the Hessian
0.994832 -0.101538
0.101538 0.994832
Eigenvalues of the Hessian
106.434422
17.197029
StDev/Correlation matrix (scaled inverse Hessian)
0.099489 -0.206170
0.240098
Compute corrected stdev for theta[0]: negative 1.040051 positive 1.140781
Compute corrected stdev for theta[1]: negative 3.311568 positive 3.810038
max.logdens= -1374.888120 fn= 104 theta= -0.147396 1.815505 range=[-2.040 5.479]
config 0=[ 0.00 0.00] log(rel.dens)=-0.09, [3] accept, compute, 13.99s
config 1=[ -0.75 0.00] log(rel.dens)=-0.36, [1] accept, compute, 14.18s
config 2=[ 0.00 -0.75] log(rel.dens)=-0.01, [2] accept, compute, 14.31s
config 3=[ 0.75 0.00] log(rel.dens)=-0.20, [0] accept, compute, 14.56s
config 4=[ 0.00 0.75] log(rel.dens)=-0.02, [3] accept, compute, 10.96s
config 5=[ -0.75 0.75] log(rel.dens)=-0.36, [1] accept, compute, 10.94s
config 6=[ -0.75 -0.75] log(rel.dens)=-0.33, [2] accept, compute, 10.96s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.27, [0] accept, compute, 10.73s
config 8=[ 0.75 0.75] log(rel.dens)=-0.25, [3] accept, compute, 11.31s
config 9=[ -1.50 0.00] log(rel.dens)=-1.20, [2] accept, compute, 11.31s
config 10=[ 1.50 0.00] log(rel.dens)=-0.94, [0] accept, compute, 11.32s
config 11=[ 0.00 -1.50] log(rel.dens)=-0.05, [1] accept, compute, 11.54s
config 12=[ 0.00 1.50] log(rel.dens)=-0.18, [3] accept, compute, 12.01s
config 13=[ 0.75 -1.50] log(rel.dens)=-0.43, [0] accept, compute, 11.76s
config 14=[ -0.75 1.50] log(rel.dens)=-0.54, [2] accept, compute, 11.92s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.32, [1] accept, compute, 11.92s
config 16=[ 0.75 1.50] log(rel.dens)=-0.22, [3] accept, compute, 11.28s
config 17=[ -1.50 0.75] log(rel.dens)=-1.20, [1] accept, compute, 11.29s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.96, [2] accept, compute, 11.40s
config 19=[ -1.50 -0.75] log(rel.dens)=-0.94, [0] accept, compute, 11.64s
config 20=[ 1.50 0.75] log(rel.dens)=-0.89, [3] accept, compute, 12.98s
config 21=[ -1.50 -1.50] log(rel.dens)=-0.98, [1] accept, compute, 12.89s
config 22=[ 1.50 1.50] log(rel.dens)=-0.76, [2] accept, compute, 13.12s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.05, [0] accept, compute, 13.20s
config 24=[ -1.50 1.50] log(rel.dens)=-1.41, [3] accept, compute, 10.97s
config 25=[ 2.25 0.00] log(rel.dens)=-2.11, [2] accept, compute, 11.03s
config 26=[ 0.00 -2.25] log(rel.dens)=-0.13, [1] accept, compute, 11.38s
config 27=[ -2.25 0.00] log(rel.dens)=-2.36, [0] accept, compute, 11.08s
config 28=[ 0.00 2.25] log(rel.dens)=-0.09, [3] accept, compute, 10.84s
config 29=[ -0.75 -2.25] log(rel.dens)=-0.37, [1] accept, compute, 10.76s
config 30=[ 2.25 0.75] log(rel.dens)=-1.83, [2] accept, compute, 10.87s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.44, [0] accept, compute, 10.71s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.15, [3] accept, compute, 10.64s
config 33=[ -0.75 2.25] log(rel.dens)=-0.60, [2] accept, compute, 10.60s
config 34=[ -2.25 0.75] log(rel.dens)=-2.60, [0] accept, compute, 10.60s
config 35=[ 2.25 -0.75] log(rel.dens)=-2.06, [1] accept, compute, 10.71s
config 36=[ 0.75 2.25] log(rel.dens)=-0.09, [3] accept, compute, 10.86s
config 37=[ 2.25 -1.50] log(rel.dens)=-2.19, [0] accept, compute, 10.68s
config 38=[ -2.25 -1.50] log(rel.dens)=-2.02, [2] accept, compute, 10.96s
config 39=[ -1.50 -2.25] log(rel.dens)=-0.89, [1] accept, compute, 10.99s
config 40=[ 2.25 1.50] log(rel.dens)=-1.67, [3] accept, compute, 12.10s
config 41=[ 1.50 -2.25] log(rel.dens)=-1.17, [2] accept, compute, 11.47s
config 42=[ -2.25 1.50] log(rel.dens)=-2.87, [1] accept, compute, 11.49s
config 43=[ -1.50 2.25] log(rel.dens)=-1.65, [0] accept, compute, 12.19s
config 44=[ 1.50 2.25] log(rel.dens)=-0.70, [3] accept, compute, 11.22s
config 45=[ 0.00 3.00] log(rel.dens)=-0.15, [2] accept, compute, 11.42s
config 46=[ 3.00 0.00] log(rel.dens)=-3.47, [1] accept, compute, 11.55s
config 47=[ 0.00 -3.00] log(rel.dens)=-0.27, [0] accept, compute, 11.67s
config 48=[ -3.00 0.00] log(rel.dens)=-4.20, [3] accept, compute, 11.25s
config 49=[ -0.75 -3.00] log(rel.dens)=-0.39, [2] accept, compute, 11.20s
config 50=[ -3.00 0.75] log(rel.dens)=-4.63, [1] accept, compute, 11.29s
config 51=[ 3.00 0.75] log(rel.dens)=-3.28, [0] accept, compute, 10.95s
config 52=[ 0.75 -3.00] log(rel.dens)=-0.58, [2] accept, compute, 11.27s
config 53=[ -0.75 3.00] log(rel.dens)=-0.75, [3] accept, compute, 11.40s
config 54=[ 3.00 -0.75] log(rel.dens)=-3.59, [0] accept, compute, 10.82s
config 55=[ 0.75 3.00] log(rel.dens)=-0.07, [1] accept, compute, 11.09s
config 56=[ 2.25 2.25] log(rel.dens)=-1.52, [3] accept, compute, 10.50s
config 57=[ -3.00 -0.75] log(rel.dens)=-3.92, [2] accept, compute, 10.51s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.37, [0] accept, compute, 10.60s
config 59=[ -2.25 -2.25] log(rel.dens)=-1.98, [1] accept, compute, 10.67s
config 60=[ -1.50 3.00] log(rel.dens)=-1.88, [2] accept, compute, 11.92s
config 61=[ -3.00 -1.50] log(rel.dens)=-3.75, [0] accept, compute, 12.22s
config 62=[ -2.25 2.25] log(rel.dens)=-3.24, [3] accept, compute, 12.59s
config 63=[ 1.50 -3.00] log(rel.dens)=-1.30, [1] accept, compute, 12.52s
config 64=[ 3.00 1.50] log(rel.dens)=-3.12, [2] accept, compute, 11.99s
config 65=[ -3.00 1.50] log(rel.dens)=-5.00, [3] accept, compute, 11.84s
config 66=[ 1.50 3.00] log(rel.dens)=-0.48, [0] accept, compute, 12.33s
config 67=[ -1.50 -3.00] log(rel.dens)=-0.97, [1] accept, compute, 12.10s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.66, [2] accept, compute, 10.64s
config 69=[ -2.25 -3.00] log(rel.dens)=-2.02, [3] accept, compute, 10.68s
config 70=[ 2.25 -3.00] log(rel.dens)=-2.38, [0] accept, compute, 10.78s
config 71=[ 0.00 -3.75] log(rel.dens)=-0.48, [1] accept, compute, 10.86s
config 72=[ -3.00 2.25] log(rel.dens)=-5.51, [2] accept, compute, 10.77s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.77, [3] accept, compute, 10.70s
config 74=[ 3.00 2.25] log(rel.dens)=-2.89, [0] accept, compute, 10.72s
config 75=[ -3.00 -2.25] log(rel.dens)=-3.58, [1] accept, compute, 10.65s
config 76=[ 2.25 3.00] log(rel.dens)=-1.39, [2] accept, compute, 11.12s
config 77=[ -3.75 0.00] log(rel.dens)=-6.64, reject, 0.33s
config 78=[ 0.00 3.75] log(rel.dens)=-0.24, [3] accept, compute, 11.23s
config 79=[ -2.25 3.00] log(rel.dens)=-3.64, [0] accept, compute, 11.37s
config 80=[ 3.75 0.00] log(rel.dens)=-5.35, [1] accept, compute, 11.36s
config 81=[ -0.75 3.75] log(rel.dens)=-0.92, [2] accept, compute, 10.76s
config 82=[ 0.75 -3.75] log(rel.dens)=-0.78, [3] accept, compute, 10.70s
config 83=[ 3.75 0.75] log(rel.dens)=-5.19, [0] accept, compute, 10.80s
config 84=[ 3.75 -0.75] log(rel.dens)=-5.41, [1] accept, compute, 10.67s
config 85=[ 0.75 3.75] log(rel.dens)=-0.04, [2] accept, compute, 11.15s
config 86=[ -0.75 -3.75] log(rel.dens)=-0.60, [3] accept, compute, 11.73s
config 87=[ 3.75 1.50] log(rel.dens)=-4.98, [1] accept, compute, 11.64s
config 88=[ -1.50 3.75] log(rel.dens)=-2.26, [0] accept, compute, 11.81s
config 89=[ -1.50 -3.75] log(rel.dens)=-1.16, [2] accept, compute, 13.66s
config 90=[ 1.50 -3.75] log(rel.dens)=-1.46, [3] accept, compute, 13.45s
config 91=[ 1.50 3.75] log(rel.dens)=-0.36, [1] accept, compute, 13.24s
config 92=[ 3.75 -1.50] log(rel.dens)=-5.56, [0] accept, compute, 13.35s
config 93=[ -3.00 -3.00] log(rel.dens)=-3.57, [2] accept, compute, 12.12s
config 94=[ 3.00 -3.00] log(rel.dens)=-3.81, [3] accept, compute, 11.67s
config 95=[ 3.00 3.00] log(rel.dens)=-2.66, [1] accept, compute, 11.80s
config 96=[ -3.00 3.00] log(rel.dens)=-5.82, [0] accept, compute, 11.90s
config 97=[ 2.25 -3.75] log(rel.dens)=-2.55, [2] accept, compute, 11.75s
config 98=[ 2.25 3.75] log(rel.dens)=-1.16, [3] accept, compute, 11.90s
config 99=[ -2.25 -3.75] log(rel.dens)=-2.22, [1] accept, compute, 11.57s
config 100=[ 3.75 -2.25] log(rel.dens)=-5.54, [0] accept, compute, 11.91s
config 101=[ 3.75 2.25] log(rel.dens)=-4.66, [2] accept, compute, 10.90s
config 102=[ -2.25 3.75] log(rel.dens)=-4.00, [3] accept, compute, 10.76s
config 103=[ 4.50 0.00] log(rel.dens)=-7.45, reject, 0.30s
config 104=[ 4.50 -0.75] log(rel.dens)=-7.71, reject, 0.31s
config 105=[ 0.00 4.50] log(rel.dens)=-0.31, [1] accept, compute, 10.96s
config 106=[ 0.00 -4.50] log(rel.dens)=-0.80, [0] accept, compute, 11.02s
config 107=[ 0.75 -4.50] log(rel.dens)=-1.07, [2] accept, compute, 11.56s
config 108=[ 0.75 4.50] log(rel.dens)=-0.13, [1] accept, compute, 11.47s
config 109=[ -0.75 4.50] log(rel.dens)=-1.22, [3] accept, compute, 11.61s
config 110=[ -0.75 -4.50] log(rel.dens)=-1.01, [0] accept, compute, 11.50s
config 111=[ 1.50 4.50] log(rel.dens)=-0.26, [3] accept, compute, 10.77s
config 112=[ -1.50 4.50] log(rel.dens)=-2.50, [2] accept, compute, 10.87s
config 113=[ -1.50 -4.50] log(rel.dens)=-1.49, [1] accept, compute, 10.96s
config 114=[ 1.50 -4.50] log(rel.dens)=-1.70, [0] accept, compute, 11.02s
config 115=[ -3.00 3.75] log(rel.dens)=-6.45, reject, 0.39s
config 116=[ 3.75 -3.00] log(rel.dens)=-5.58, [3] accept, compute, 11.07s
config 117=[ -3.00 -3.75] log(rel.dens)=-3.69, [2] accept, compute, 11.30s
config 118=[ 3.00 3.75] log(rel.dens)=-2.42, [1] accept, compute, 11.13s
config 119=[ 3.75 3.00] log(rel.dens)=-4.50, [0] accept, compute, 12.16s
config 120=[ 3.00 -3.75] log(rel.dens)=-3.98, [3] accept, compute, 14.91s
config 121=[ 2.25 -4.50] log(rel.dens)=-2.72, [2] accept, compute, 15.54s
config 122=[ -2.25 -4.50] log(rel.dens)=-2.53, [1] accept, compute, 15.95s
config 123=[ -2.25 4.50] log(rel.dens)=-4.54, [0] accept, compute, 16.72s
config 124=[ 2.25 4.50] log(rel.dens)=-0.97, [3] accept, compute, 73.53s
config 125=[ 0.00 5.25] log(rel.dens)=-0.43, [2] accept, compute, 74.33s
config 126=[ 0.00 -5.25] log(rel.dens)=-1.23, [1] accept, compute, 76.87s
config 127=[ -0.75 -5.25] log(rel.dens)=-1.41, [0] accept, compute, 81.72s
config 128=[ 3.75 3.75] log(rel.dens)=-4.07, [3] accept, compute, 54.69s
config 129=[ -0.75 5.25] log(rel.dens)=-1.45, [2] accept, compute, 53.90s
config 130=[ 0.75 -5.25] log(rel.dens)=-1.52, [1] accept, compute, 52.07s
config 131=[ 0.75 5.25] log(rel.dens)=-0.02, [0] accept, compute, 46.60s
config 132=[ 3.75 -3.75] log(rel.dens)=-5.59, [3] accept, compute, 15.79s
config 133=[ -3.00 -4.50] log(rel.dens)=-3.97, [2] accept, compute, 15.45s
config 134=[ 3.00 -4.50] log(rel.dens)=-4.00, [1] accept, compute, 14.84s
config 135=[ 3.00 4.50] log(rel.dens)=-2.14, [0] accept, compute, 14.66s
config 136=[ 1.50 5.25] log(rel.dens)=-0.17, [3] accept, compute, 15.25s
config 137=[ -1.50 -5.25] log(rel.dens)=-1.99, [1] accept, compute, 15.32s
config 138=[ -1.50 5.25] log(rel.dens)=-2.81, [2] accept, compute, 16.02s
config 139=[ 1.50 -5.25] log(rel.dens)=-2.04, [0] accept, compute, 16.49s
config 140=[ 2.25 5.25] log(rel.dens)=-0.86, [3] accept, compute, 19.82s
config 141=[ -2.25 5.25] log(rel.dens)=-4.86, [1] accept, compute, 19.84s
config 142=[ -2.25 -5.25] log(rel.dens)=-2.98, [2] accept, compute, 19.73s
config 143=[ 2.25 -5.25] log(rel.dens)=-3.01, [0] accept, compute, 19.05s
config 144=[ 3.75 4.50] log(rel.dens)=-3.74, [3] accept, compute, 17.94s
config 145=[ 0.00 -6.00] log(rel.dens)=-1.83, [2] accept, compute, 18.73s
config 146=[ 3.75 -4.50] log(rel.dens)=-5.61, [1] accept, compute, 19.23s
config 147=[ 0.00 6.00] log(rel.dens)=-0.55, [0] accept, compute, 17.71s
config 148=[ 3.00 5.25] log(rel.dens)=-1.98, [3] accept, compute, 11.91s
config 149=[ -0.75 -6.00] log(rel.dens)=-2.07, [1] accept, compute, 10.81s
config 150=[ 0.75 -6.00] log(rel.dens)=-2.06, [2] accept, compute, 11.25s
config 151=[ 3.00 -5.25] log(rel.dens)=-4.21, [0] accept, compute, 10.76s
config 152=[ -3.00 -5.25] log(rel.dens)=-4.51, [3] accept, compute, 10.99s
config 153=[ 0.75 6.00] log(rel.dens)=-0.03, [1] accept, compute, 12.32s
config 154=[ -0.75 6.00] log(rel.dens)=-1.59, [2] accept, compute, 12.46s
config 155=[ 1.50 6.00] log(rel.dens)=-0.07, [0] accept, compute, 13.56s
config 156=[ -1.50 -6.00] log(rel.dens)=-2.65, [3] accept, compute, 17.15s
config 157=[ -1.50 6.00] log(rel.dens)=-3.16, [1] accept, compute, 15.73s
config 158=[ 1.50 -6.00] log(rel.dens)=-2.53, [2] accept, compute, 15.79s
config 159=[ 2.25 -6.00] log(rel.dens)=-3.33, [0] accept, compute, 14.83s
config 160=[ -2.25 -6.00] log(rel.dens)=-3.78, [3] accept, compute, 13.15s
config 161=[ 2.25 6.00] log(rel.dens)=-0.59, [2] accept, compute, 15.20s
config 162=[ -2.25 6.00] log(rel.dens)=-5.48, [1] accept, compute, 15.61s
config 163=[ 3.75 -5.25] log(rel.dens)=-5.67, [0] accept, compute, 15.16s
config 164=[ 3.75 5.25] log(rel.dens)=-3.45, [3] accept, compute, 19.29s
config 165=[ -3.00 -6.00] log(rel.dens)=-5.19, [2] accept, compute, 19.52s
config 166=[ 3.00 6.00] log(rel.dens)=-1.62, [1] accept, compute, 19.57s
config 167=[ 3.00 -6.00] log(rel.dens)=-4.52, [0] accept, compute, 20.10s
config 168=[ 0.00 -6.75] log(rel.dens)=-2.70, [3] accept, compute, 20.31s
config 169=[ 0.00 6.75] log(rel.dens)=-0.66, [2] accept, compute, 19.30s
config 170=[ -0.75 6.75] log(rel.dens)=-1.84, [1] accept, compute, 19.09s
config 171=[ 0.75 -6.75] log(rel.dens)=-2.73, [0] accept, compute, 18.94s
max.logdens= -1374.859252 fn= 280 theta= -0.168027 3.449566 range=[-1.964 5.422]
config 172=[ -0.75 -6.75] log(rel.dens)=-3.02, [3] accept, compute, 20.72s
config 173=[ 0.75 6.75] log(rel.dens)=-0.15, [2] accept, compute, 22.42s
config 174=[ -1.50 6.75] log(rel.dens)=-3.68, [1] accept, compute, 22.47s
config 175=[ 1.50 6.75] log(rel.dens)= 0.03, [0] accept, compute, 24.31s
config 176=[ 1.50 -6.75] log(rel.dens)=-3.13, [3] accept, compute, 24.27s
config 177=[ 3.75 6.00] log(rel.dens)=-3.07, [1] accept, compute, 22.32s
config 178=[ -1.50 -6.75] log(rel.dens)=-3.62, [2] accept, compute, 22.56s
config 179=[ 3.75 -6.00] log(rel.dens)=-5.83, [0] accept, compute, 22.70s
config 180=[ -2.25 -6.75] log(rel.dens)=-4.66, [3] accept, compute, 18.38s
config 181=[ -2.25 6.75] log(rel.dens)=-6.00, [1] accept, compute, 18.05s
config 182=[ 2.25 6.75] log(rel.dens)=-0.40, [2] accept, compute, 17.99s
config 183=[ -3.00 -6.75] log(rel.dens)=-6.15, reject, 0.32s
config 184=[ 2.25 -6.75] log(rel.dens)=-3.83, [0] accept, compute, 16.13s
config 185=[ 3.00 6.75] log(rel.dens)=-1.33, [3] accept, compute, 13.07s
config 186=[ 3.00 -6.75] log(rel.dens)=-4.84, [2] accept, compute, 12.51s
config 187=[ 0.00 7.50] log(rel.dens)=-0.82, [1] accept, compute, 12.83s
config 188=[ 0.00 -7.50] log(rel.dens)=-3.76, [0] accept, compute, 13.04s
config 189=[ -0.75 -7.50] log(rel.dens)=-4.18, [3] accept, compute, 11.71s
config 190=[ -0.75 7.50] log(rel.dens)=-2.22, [2] accept, compute, 12.09s
config 191=[ 0.75 -7.50] log(rel.dens)=-3.77, [1] accept, compute, 11.54s
max.logdens= -1374.758866 fn= 300 theta= -0.186390 3.629488 range=[-1.962 5.440]
config 192=[ 0.75 7.50] log(rel.dens)=-0.09, [0] accept, compute, 11.76s
config 193=[ 1.50 -7.50] log(rel.dens)=-4.00, [3] accept, compute, 12.20s
config 194=[ 3.75 -6.75] log(rel.dens)=-6.04, reject, 0.32s
config 195=[ -1.50 -7.50] log(rel.dens)=-4.85, [1] accept, compute, 12.78s
config 196=[ 1.50 7.50] log(rel.dens)= 0.13, [2] accept, compute, 13.03s
config 197=[ -2.25 7.50] log(rel.dens)=-6.44, reject, 1.13s
config 198=[ -1.50 7.50] log(rel.dens)=-3.96, [0] accept, compute, 14.55s
config 199=[ 3.75 6.75] log(rel.dens)=-2.67, [3] accept, compute, 18.47s
config 200=[ 2.25 -7.50] log(rel.dens)=-4.62, [2] accept, compute, 19.18s
config 201=[ 2.25 7.50] log(rel.dens)=-0.22, [1] accept, compute, 19.07s
config 202=[ -2.25 -7.50] log(rel.dens)=-5.99, [0] accept, compute, 18.62s
config 203=[ 3.00 -7.50] log(rel.dens)=-5.44, [3] accept, compute, 13.92s
config 204=[ 3.00 7.50] log(rel.dens)=-1.02, [2] accept, compute, 12.01s
config 205=[ 0.00 -8.25] log(rel.dens)=-5.26, [1] accept, compute, 11.83s
config 206=[ 0.00 8.25] log(rel.dens)=-1.00, [0] accept, compute, 11.55s
config 207=[ 0.75 -8.25] log(rel.dens)=-5.05, [3] accept, compute, 11.07s
max.logdens= -1374.724166 fn= 316 theta= -0.204754 3.809410 range=[-1.961 5.458]
config 208=[ 0.75 8.25] log(rel.dens)=-0.12, [2] accept, compute, 11.19s
config 209=[ -1.50 -8.25] log(rel.dens)=-6.54, reject, 0.42s
config 210=[ -0.75 8.25] log(rel.dens)=-2.45, [1] accept, compute, 11.86s
config 211=[ -0.75 -8.25] log(rel.dens)=-5.73, [0] accept, compute, 11.89s
config 212=[ 1.50 8.25] log(rel.dens)= 0.16, [3] accept, compute, 13.34s
config 213=[ 3.75 7.50] log(rel.dens)=-2.34, [2] accept, compute, 12.97s
config 214=[ 1.50 -8.25] log(rel.dens)=-5.28, [1] accept, compute, 13.30s
config 215=[ 3.00 -8.25] log(rel.dens)=-6.46, reject, 0.31s
config 216=[ -1.50 8.25] log(rel.dens)=-4.45, [0] accept, compute, 12.96s
config 217=[ 0.00 -9.00] log(rel.dens)=-7.18, reject, 0.52s
config 218=[ 2.25 8.25] log(rel.dens)=-0.10, [3] accept, compute, 11.70s
config 219=[ 2.25 -8.25] log(rel.dens)=-5.67, [2] accept, compute, 11.84s
config 220=[ 3.00 8.25] log(rel.dens)=-0.75, [1] accept, compute, 12.51s
config 221=[ 0.00 9.00] log(rel.dens)=-1.23, [0] accept, compute, 12.79s
config 222=[ 0.75 9.00] log(rel.dens)=-0.18, [3] accept, compute, 14.20s
config 223=[ -0.75 9.00] log(rel.dens)=-2.86, [2] accept, compute, 15.43s
max.logdens= -1374.723379 fn= 332 theta= -0.150796 3.996713 range=[-1.946 5.390]
config 224=[ 3.75 8.25] log(rel.dens)=-1.96, [1] accept, compute, 15.92s
config 225=[ -1.50 9.00] log(rel.dens)=-4.86, [0] accept, compute, 16.27s
config 226=[ 1.50 9.00] log(rel.dens)= 0.15, [3] accept, compute, 14.61s
config 227=[ 2.25 9.00] log(rel.dens)= 0.16, [2] accept, compute, 13.26s
config 228=[ 3.00 9.00] log(rel.dens)=-0.56, [1] accept, compute, 11.86s
config 229=[ 0.00 9.75] log(rel.dens)=-1.39, [0] accept, compute, 11.71s
config 230=[ 3.75 9.00] log(rel.dens)=-1.50, [3] accept, compute, 11.60s
max.logdens= -1374.594067 fn= 339 theta= -0.241482 4.169254 range=[-1.961 5.495]
config 231=[ -0.75 9.75] log(rel.dens)=-3.09, [2] accept, compute, 11.67s
max.logdens= -1374.565373 fn= 340 theta= -0.169160 4.176635 range=[-1.946 5.409]
config 232=[ 0.75 9.75] log(rel.dens)=-0.27, [1] accept, compute, 11.47s
config 233=[ -1.50 9.75] log(rel.dens)=-5.36, [0] accept, compute, 11.32s
config 234=[ 1.50 9.75] log(rel.dens)= 0.29, [3] accept, compute, 12.41s
config 235=[ 2.25 9.75] log(rel.dens)= 0.32, [2] accept, compute, 13.02s
config 236=[ 3.00 9.75] log(rel.dens)=-0.15, [1] accept, compute, 14.19s
config 237=[ 3.75 9.75] log(rel.dens)=-1.17, [0] accept, compute, 14.84s
config 238=[ 0.00 10.50] log(rel.dens)=-1.64, [3] accept, compute, 15.11s
config 239=[ -0.75 10.50] log(rel.dens)=-3.48, [2] accept, compute, 14.05s
max.logdens= -1374.424660 fn= 348 theta= -0.187524 4.356557 range=[-1.947 5.429]
config 240=[ 0.75 10.50] log(rel.dens)=-0.39, [1] accept, compute, 14.72s
config 241=[ -1.50 10.50] log(rel.dens)=-5.97, [0] accept, compute, 13.73s
config 242=[ 1.50 10.50] log(rel.dens)= 0.31, [3] accept, compute, 15.41s
config 243=[ 2.25 10.50] log(rel.dens)= 0.46, [2] accept, compute, 15.31s
config 244=[ 3.00 10.50] log(rel.dens)= 0.11, [1] accept, compute, 14.40s
config 245=[ 3.75 10.50] log(rel.dens)=-0.80, [0] accept, compute, 14.12s
config 246=[ 0.00 11.25] log(rel.dens)=-1.91, [3] accept, compute, 15.32s
config 247=[ -1.50 11.25] log(rel.dens)=-6.44, reject, 0.45s
max.logdens= -1374.314054 fn= 356 theta= -0.205888 4.536479 range=[-1.948 5.449]
config 248=[ -0.75 11.25] log(rel.dens)=-3.89, [2] accept, compute, 16.75s
config 249=[ 0.75 11.25] log(rel.dens)=-0.52, [1] accept, compute, 18.21s
config 250=[ 1.50 11.25] log(rel.dens)= 0.31, [0] accept, compute, 18.86s
config 251=[ 2.25 11.25] log(rel.dens)= 0.57, [3] accept, compute, 24.00s
config 252=[ 3.00 11.25] log(rel.dens)= 0.33, [2] accept, compute, 23.24s
config 253=[ 3.75 11.25] log(rel.dens)=-0.40, [1] accept, compute, 23.68s
config 254=[ 0.00 12.00] log(rel.dens)=-2.22, [0] accept, compute, 23.20s
max.logdens= -1374.201288 fn= 363 theta= -0.224251 4.716401 range=[-1.950 5.469]
config 255=[ -0.75 12.00] log(rel.dens)=-4.34, [3] accept, compute, 14.04s
config 256=[ 0.75 12.00] log(rel.dens)=-0.69, [2] accept, compute, 14.04s
config 257=[ 1.50 12.00] log(rel.dens)= 0.27, [1] accept, compute, 12.98s
config 258=[ 2.25 12.00] log(rel.dens)= 0.69, [0] accept, compute, 13.52s
config 259=[ 3.00 12.00] log(rel.dens)= 0.55, [3] accept, compute, 17.02s
config 260=[ 3.75 12.00] log(rel.dens)=-0.06, [2] accept, compute, 16.93s
config 261=[ 0.00 12.75] log(rel.dens)=-2.56, [1] accept, compute, 15.88s
max.logdens= -1374.128461 fn= 370 theta= -0.242615 4.896323 range=[-1.952 5.489]
config 262=[ 0.75 12.75] log(rel.dens)=-0.88, [0] accept, compute, 15.02s
max.logdens= -1374.120942 fn= 371 theta= -0.170293 4.903704 range=[-1.936 5.403]
config 263=[ -0.75 12.75] log(rel.dens)=-4.84, [3] accept, compute, 12.14s
config 264=[ 1.50 12.75] log(rel.dens)= 0.21, [2] accept, compute, 12.09s
config 265=[ 2.25 12.75] log(rel.dens)= 0.76, [1] accept, compute, 12.61s
config 266=[ 3.00 12.75] log(rel.dens)= 0.77, [0] accept, compute, 12.30s
config 267=[ 3.75 12.75] log(rel.dens)= 0.23, [3] accept, compute, 11.76s
config 268=[ 0.00 13.50] log(rel.dens)=-2.93, [2] accept, compute, 11.92s
max.logdens= -1374.083235 fn= 377 theta= -0.260979 5.076245 range=[-1.954 5.509]
config 269=[ 0.75 13.50] log(rel.dens)=-1.11, [1] accept, compute, 10.82s
max.logdens= -1373.946851 fn= 378 theta= -0.188657 5.083626 range=[-1.939 5.424]
config 270=[ -0.75 13.50] log(rel.dens)=-5.36, [0] accept, compute, 11.13s
config 271=[ 1.50 13.50] log(rel.dens)= 0.13, [3] accept, compute, 11.59s
config 272=[ 2.25 13.50] log(rel.dens)= 0.80, [2] accept, compute, 11.16s
config 273=[ 3.00 13.50] log(rel.dens)= 0.94, [1] accept, compute, 11.12s
config 274=[ 3.75 13.50] log(rel.dens)= 0.53, [0] accept, compute, 11.20s
config 275=[ 0.00 14.25] log(rel.dens)=-3.34, [3] accept, compute, 11.45s
config 276=[ -0.75 14.25] log(rel.dens)=-5.90, [2] accept, compute, 11.70s
max.logdens= -1373.814972 fn= 385 theta= -0.207021 5.263548 range=[-1.941 5.445]
config 277=[ 0.75 14.25] log(rel.dens)=-1.38, [1] accept, compute, 11.45s
config 278=[ 1.50 14.25] log(rel.dens)= 0.00, [0] accept, compute, 11.51s
config 279=[ 2.25 14.25] log(rel.dens)= 0.82, [3] accept, compute, 12.05s
config 280=[ 3.00 14.25] log(rel.dens)= 1.07, [2] accept, compute, 12.58s
config 281=[ -0.75 15.00] log(rel.dens)=-6.51, reject, 0.32s
config 282=[ 3.75 14.25] log(rel.dens)= 0.82, [1] accept, compute, 12.62s
config 283=[ 0.00 15.00] log(rel.dens)=-3.78, [0] accept, compute, 12.16s
max.logdens= -1373.688116 fn= 392 theta= -0.225385 5.443470 range=[-1.944 5.466]
config 284=[ 0.75 15.00] log(rel.dens)=-1.67, [3] accept, compute, 11.21s
config 285=[ 1.50 15.00] log(rel.dens)=-0.15, [2] accept, compute, 11.35s
config 286=[ 2.25 15.00] log(rel.dens)= 0.81, [1] accept, compute, 11.11s
config 287=[ 3.00 15.00] log(rel.dens)= 1.20, [0] accept, compute, 11.40s
config 288=[ 3.75 15.00] log(rel.dens)= 1.07, [3] accept, compute, 11.30s
config 289=[ 0.00 15.75] log(rel.dens)=-4.26, [2] accept, compute, 11.52s
config 290=[ 0.75 15.75] log(rel.dens)=-2.01, [1] accept, compute, 11.14s
max.logdens= -1373.603387 fn= 398 theta= -0.243749 5.623392 range=[-1.947 5.487]
config 291=[ 1.50 15.75] log(rel.dens)=-0.34, [0] accept, compute, 11.65s
config 292=[ 2.25 15.75] log(rel.dens)= 0.76, [3] accept, compute, 13.62s
config 293=[ 3.00 15.75] log(rel.dens)= 1.28, [2] accept, compute, 13.50s
config 294=[ 3.75 15.75] log(rel.dens)= 1.28, [1] accept, compute, 13.69s
config 295=[ 0.00 16.50] log(rel.dens)=-4.78, [0] accept, compute, 13.94s
max.logdens= -1373.552714 fn= 404 theta= -0.262112 5.803314 range=[-1.950 5.507]
config 296=[ 0.75 16.50] log(rel.dens)=-2.38, [3] accept, compute, 15.16s
max.logdens= -1373.422630 fn= 405 theta= -0.189790 5.810696 range=[-1.934 5.422]
config 297=[ 1.50 16.50] log(rel.dens)=-0.57, [2] accept, compute, 15.40s
config 298=[ 2.25 16.50] log(rel.dens)= 0.67, [1] accept, compute, 15.46s
config 299=[ 3.00 16.50] log(rel.dens)= 1.34, [0] accept, compute, 15.27s
config 300=[ 3.75 16.50] log(rel.dens)= 1.47, [3] accept, compute, 17.40s
config 301=[ 0.00 17.25] log(rel.dens)=-5.35, [2] accept, compute, 19.64s
config 302=[ 0.75 17.25] log(rel.dens)=-2.79, [1] accept, compute, 19.91s
max.logdens= -1373.274574 fn= 411 theta= -0.208154 5.990618 range=[-1.937 5.444]
config 303=[ 1.50 17.25] log(rel.dens)=-0.83, [0] accept, compute, 20.06s
config 304=[ 2.25 17.25] log(rel.dens)= 0.54, [3] accept, compute, 17.83s
config 305=[ 3.00 17.25] log(rel.dens)= 1.35, [2] accept, compute, 17.23s
config 306=[ 3.75 17.25] log(rel.dens)= 1.61, [1] accept, compute, 17.34s
config 307=[ 0.00 18.00] log(rel.dens)=-5.95, [0] accept, compute, 19.43s
config 308=[ 0.75 18.00] log(rel.dens)=-3.25, [3] accept, compute, 21.81s
max.logdens= -1373.163166 fn= 417 theta= -0.226518 6.170540 range=[-1.941 5.465]
config 309=[ 1.50 18.00] log(rel.dens)=-1.14, [2] accept, compute, 24.39s
config 310=[ 0.00 18.75] log(rel.dens)=-6.60, reject, 0.84s
config 311=[ 2.25 18.00] log(rel.dens)= 0.38, [1] accept, compute, 24.60s
config 312=[ 3.00 18.00] log(rel.dens)= 1.33, [0] accept, compute, 22.73s
config 313=[ 3.75 18.00] log(rel.dens)= 1.72, [3] accept, compute, 17.54s
Combine the densities with relative weights:
config 0/301=[ 0.00 0.00] weight = 0.163 adjusted weight = 0.006 neff = 573.00
config 1/301=[ -0.75 0.00] weight = 0.125 adjusted weight = 0.004 neff = 597.67
config 2/301=[ 0.00 -0.75] weight = 0.176 adjusted weight = 0.006 neff = 569.64
config 3/301=[ 0.75 0.00] weight = 0.145 adjusted weight = 0.005 neff = 548.65
config 4/301=[ 0.00 0.75] weight = 0.174 adjusted weight = 0.006 neff = 576.64
config 5/301=[ -0.75 0.75] weight = 0.124 adjusted weight = 0.004 neff = 601.53
config 6/301=[ -0.75 -0.75] weight = 0.128 adjusted weight = 0.004 neff = 594.21
config 7/301=[ 0.75 -0.75] weight = 0.136 adjusted weight = 0.005 neff = 545.68
config 8/301=[ 0.75 0.75] weight = 0.138 adjusted weight = 0.005 neff = 552.30
config 9/301=[ -1.50 0.00] weight = 0.053 adjusted weight = 0.002 neff = 622.82
config 10/301=[ 1.50 0.00] weight = 0.070 adjusted weight = 0.002 neff = 525.02
config 11/301=[ 0.00 -1.50] weight = 0.169 adjusted weight = 0.006 neff = 566.99
config 12/301=[ 0.00 1.50] weight = 0.148 adjusted weight = 0.005 neff = 581.02
config 13/301=[ 0.75 -1.50] weight = 0.116 adjusted weight = 0.004 neff = 543.43
config 14/301=[ -0.75 1.50] weight = 0.104 adjusted weight = 0.004 neff = 606.02
config 15/301=[ -0.75 -1.50] weight = 0.129 adjusted weight = 0.004 neff = 591.29
config 16/301=[ 0.75 1.50] weight = 0.143 adjusted weight = 0.005 neff = 556.27
config 17/301=[ -1.50 0.75] weight = 0.053 adjusted weight = 0.002 neff = 626.78
config 18/301=[ 1.50 -0.75] weight = 0.068 adjusted weight = 0.002 neff = 522.20
config 19/301=[ -1.50 -0.75] weight = 0.070 adjusted weight = 0.002 neff = 618.89
config 20/301=[ 1.50 0.75] weight = 0.073 adjusted weight = 0.002 neff = 528.36
config 21/301=[ -1.50 -1.50] weight = 0.067 adjusted weight = 0.002 neff = 615.87
config 22/301=[ 1.50 1.50] weight = 0.083 adjusted weight = 0.003 neff = 532.06
config 23/301=[ 1.50 -1.50] weight = 0.062 adjusted weight = 0.002 neff = 520.13
config 24/301=[ -1.50 1.50] weight = 0.044 adjusted weight = 0.001 neff = 631.37
config 25/301=[ 2.25 0.00] weight = 0.022 adjusted weight = 0.001 neff = 501.96
config 26/301=[ 0.00 -2.25] weight = 0.156 adjusted weight = 0.005 neff = 565.03
config 27/301=[ -2.25 0.00] weight = 0.017 adjusted weight = 0.001 neff = 648.00
config 28/301=[ 0.00 2.25] weight = 0.163 adjusted weight = 0.006 neff = 585.39
config 29/301=[ -0.75 -2.25] weight = 0.123 adjusted weight = 0.004 neff = 589.03
config 30/301=[ 2.25 0.75] weight = 0.029 adjusted weight = 0.001 neff = 504.75
config 31/301=[ 0.75 -2.25] weight = 0.114 adjusted weight = 0.004 neff = 541.66
config 32/301=[ -2.25 -0.75] weight = 0.021 adjusted weight = 0.001 neff = 644.05
config 33/301=[ -0.75 2.25] weight = 0.098 adjusted weight = 0.003 neff = 610.68
config 34/301=[ -2.25 0.75] weight = 0.013 adjusted weight = 0.000 neff = 652.36
config 35/301=[ 2.25 -0.75] weight = 0.023 adjusted weight = 0.001 neff = 499.29
config 36/301=[ 0.75 2.25] weight = 0.163 adjusted weight = 0.006 neff = 560.51
config 37/301=[ 2.25 -1.50] weight = 0.020 adjusted weight = 0.001 neff = 497.55
config 38/301=[ -2.25 -1.50] weight = 0.024 adjusted weight = 0.001 neff = 640.65
config 39/301=[ -1.50 -2.25] weight = 0.073 adjusted weight = 0.002 neff = 613.20
config 40/301=[ 2.25 1.50] weight = 0.033 adjusted weight = 0.001 neff = 508.25
config 41/301=[ 1.50 -2.25] weight = 0.055 adjusted weight = 0.002 neff = 518.80
config 42/301=[ -2.25 1.50] weight = 0.010 adjusted weight = 0.000 neff = 657.09
config 43/301=[ -1.50 2.25] weight = 0.034 adjusted weight = 0.001 neff = 636.31
config 44/301=[ 1.50 2.25] weight = 0.089 adjusted weight = 0.003 neff = 536.27
config 45/301=[ 0.00 3.00] weight = 0.153 adjusted weight = 0.005 neff = 590.29
config 46/301=[ 3.00 0.00] weight = 0.006 adjusted weight = 0.000 neff = 479.19
config 47/301=[ 0.00 -3.00] weight = 0.136 adjusted weight = 0.005 neff = 563.87
config 48/301=[ -3.00 0.00] weight = 0.003 adjusted weight = 0.000 neff = 673.63
config 49/301=[ -0.75 -3.00] weight = 0.120 adjusted weight = 0.004 neff = 587.41
config 50/301=[ -3.00 0.75] weight = 0.002 adjusted weight = 0.000 neff = 678.28
config 51/301=[ 3.00 0.75] weight = 0.007 adjusted weight = 0.000 neff = 481.88
config 52/301=[ 0.75 -3.00] weight = 0.100 adjusted weight = 0.003 neff = 540.81
config 53/301=[ -0.75 3.00] weight = 0.084 adjusted weight = 0.003 neff = 615.73
config 54/301=[ 3.00 -0.75] weight = 0.005 adjusted weight = 0.000 neff = 477.03
config 55/301=[ 0.75 3.00] weight = 0.166 adjusted weight = 0.006 neff = 565.23
config 56/301=[ 2.25 2.25] weight = 0.039 adjusted weight = 0.001 neff = 512.19
config 57/301=[ -3.00 -0.75] weight = 0.004 adjusted weight = 0.000 neff = 669.51
config 58/301=[ 2.25 -2.25] weight = 0.017 adjusted weight = 0.001 neff = 496.64
config 59/301=[ -2.25 -2.25] weight = 0.025 adjusted weight = 0.001 neff = 637.85
config 60/301=[ -1.50 3.00] weight = 0.027 adjusted weight = 0.001 neff = 641.49
config 61/301=[ -3.00 -1.50] weight = 0.004 adjusted weight = 0.000 neff = 665.93
config 62/301=[ -2.25 2.25] weight = 0.007 adjusted weight = 0.000 neff = 662.20
config 63/301=[ 1.50 -3.00] weight = 0.049 adjusted weight = 0.002 neff = 518.31
config 64/301=[ 3.00 1.50] weight = 0.008 adjusted weight = 0.000 neff = 485.17
config 65/301=[ -3.00 1.50] weight = 0.001 adjusted weight = 0.000 neff = 683.15
config 66/301=[ 1.50 3.00] weight = 0.110 adjusted weight = 0.004 neff = 540.63
config 67/301=[ -1.50 -3.00] weight = 0.067 adjusted weight = 0.002 neff = 611.39
config 68/301=[ 3.00 -1.50] weight = 0.005 adjusted weight = 0.000 neff = 475.49
config 69/301=[ -2.25 -3.00] weight = 0.024 adjusted weight = 0.001 neff = 635.75
config 70/301=[ 2.25 -3.00] weight = 0.016 adjusted weight = 0.001 neff = 496.35
config 71/301=[ 0.00 -3.75] weight = 0.110 adjusted weight = 0.004 neff = 563.62
config 72/301=[ -3.00 2.25] weight = 0.001 adjusted weight = 0.000 neff = 688.43
config 73/301=[ 3.00 -2.25] weight = 0.004 adjusted weight = 0.000 neff = 474.84
config 74/301=[ 3.00 2.25] weight = 0.010 adjusted weight = 0.000 neff = 488.83
config 75/301=[ -3.00 -2.25] weight = 0.005 adjusted weight = 0.000 neff = 662.81
config 76/301=[ 2.25 3.00] weight = 0.045 adjusted weight = 0.002 neff = 516.55
config 77/301=[ 0.00 3.75] weight = 0.140 adjusted weight = 0.005 neff = 595.48
config 78/301=[ -2.25 3.00] weight = 0.005 adjusted weight = 0.000 neff = 667.59
config 79/301=[ 3.75 0.00] weight = 0.001 adjusted weight = 0.000 neff = 457.26
config 80/301=[ -0.75 3.75] weight = 0.071 adjusted weight = 0.002 neff = 621.06
config 81/301=[ 0.75 -3.75] weight = 0.082 adjusted weight = 0.003 neff = 540.93
config 82/301=[ 3.75 0.75] weight = 0.001 adjusted weight = 0.000 neff = 459.75
config 83/301=[ 3.75 -0.75] weight = 0.001 adjusted weight = 0.000 neff = 455.29
config 84/301=[ 0.75 3.75] weight = 0.171 adjusted weight = 0.006 neff = 570.23
config 85/301=[ -0.75 -3.75] weight = 0.098 adjusted weight = 0.003 neff = 586.80
config 86/301=[ 3.75 1.50] weight = 0.001 adjusted weight = 0.000 neff = 462.75
config 87/301=[ -1.50 3.75] weight = 0.019 adjusted weight = 0.001 neff = 647.07
config 88/301=[ -1.50 -3.75] weight = 0.056 adjusted weight = 0.002 neff = 610.44
config 89/301=[ 1.50 -3.75] weight = 0.041 adjusted weight = 0.001 neff = 518.78
config 90/301=[ 1.50 3.75] weight = 0.124 adjusted weight = 0.004 neff = 545.43
config 91/301=[ 3.75 -1.50] weight = 0.001 adjusted weight = 0.000 neff = 454.21
config 92/301=[ -3.00 -3.00] weight = 0.005 adjusted weight = 0.000 neff = 660.42
config 93/301=[ 3.00 -3.00] weight = 0.004 adjusted weight = 0.000 neff = 475.01
config 94/301=[ 3.00 3.00] weight = 0.013 adjusted weight = 0.000 neff = 492.92
config 95/301=[ -3.00 3.00] weight = 0.001 adjusted weight = 0.000 neff = 693.68
config 96/301=[ 2.25 -3.75] weight = 0.014 adjusted weight = 0.000 neff = 497.26
config 97/301=[ 2.25 3.75] weight = 0.056 adjusted weight = 0.002 neff = 521.12
config 98/301=[ -2.25 -3.75] weight = 0.019 adjusted weight = 0.001 neff = 634.51
config 99/301=[ 3.75 -2.25] weight = 0.001 adjusted weight = 0.000 neff = 453.74
config 100/301=[ 3.75 2.25] weight = 0.002 adjusted weight = 0.000 neff = 466.09
config 101/301=[ -2.25 3.75] weight = 0.003 adjusted weight = 0.000 neff = 673.12
config 102/301=[ 0.00 4.50] weight = 0.131 adjusted weight = 0.004 neff = 600.87
config 103/301=[ 0.00 -4.50] weight = 0.080 adjusted weight = 0.003 neff = 564.43
config 104/301=[ 0.75 -4.50] weight = 0.061 adjusted weight = 0.002 neff = 542.14
config 105/301=[ 0.75 4.50] weight = 0.156 adjusted weight = 0.005 neff = 575.64
config 106/301=[ -0.75 4.50] weight = 0.052 adjusted weight = 0.002 neff = 626.75
config 107/301=[ -0.75 -4.50] weight = 0.065 adjusted weight = 0.002 neff = 587.33
config 108/301=[ 1.50 4.50] weight = 0.138 adjusted weight = 0.005 neff = 550.52
config 109/301=[ -1.50 4.50] weight = 0.015 adjusted weight = 0.000 neff = 652.66
config 110/301=[ -1.50 -4.50] weight = 0.040 adjusted weight = 0.001 neff = 610.47
config 111/301=[ 1.50 -4.50] weight = 0.033 adjusted weight = 0.001 neff = 520.38
config 112/301=[ 3.75 -3.00] weight = 0.001 adjusted weight = 0.000 neff = 454.32
config 113/301=[ -3.00 -3.75] weight = 0.004 adjusted weight = 0.000 neff = 658.82
config 114/301=[ 3.00 3.75] weight = 0.016 adjusted weight = 0.001 neff = 497.37
config 115/301=[ 3.75 3.00] weight = 0.002 adjusted weight = 0.000 neff = 470.13
config 116/301=[ 3.00 -3.75] weight = 0.003 adjusted weight = 0.000 neff = 476.36
config 117/301=[ 2.25 -4.50] weight = 0.012 adjusted weight = 0.000 neff = 499.26
config 118/301=[ -2.25 -4.50] weight = 0.014 adjusted weight = 0.000 neff = 634.17
config 119/301=[ -2.25 4.50] weight = 0.002 adjusted weight = 0.000 neff = 679.03
config 120/301=[ 2.25 4.50] weight = 0.067 adjusted weight = 0.002 neff = 526.03
config 121/301=[ 0.00 5.25] weight = 0.116 adjusted weight = 0.004 neff = 606.53
config 122/301=[ 0.00 -5.25] weight = 0.052 adjusted weight = 0.002 neff = 566.42
config 123/301=[ -0.75 -5.25] weight = 0.044 adjusted weight = 0.001 neff = 588.81
config 124/301=[ 3.75 3.75] weight = 0.003 adjusted weight = 0.000 neff = 474.15
config 125/301=[ -0.75 5.25] weight = 0.042 adjusted weight = 0.001 neff = 632.52
config 126/301=[ 0.75 -5.25] weight = 0.039 adjusted weight = 0.001 neff = 544.67
config 127/301=[ 0.75 5.25] weight = 0.174 adjusted weight = 0.006 neff = 580.97
config 128/301=[ 3.75 -3.75] weight = 0.001 adjusted weight = 0.000 neff = 455.92
config 129/301=[ -3.00 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 658.12
config 130/301=[ 3.00 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 478.66
config 131/301=[ 3.00 4.50] weight = 0.021 adjusted weight = 0.001 neff = 502.05
config 132/301=[ 1.50 5.25] weight = 0.151 adjusted weight = 0.005 neff = 555.86
config 133/301=[ -1.50 -5.25] weight = 0.024 adjusted weight = 0.001 neff = 611.64
config 134/301=[ -1.50 5.25] weight = 0.011 adjusted weight = 0.000 neff = 658.48
config 135/301=[ 1.50 -5.25] weight = 0.023 adjusted weight = 0.001 neff = 523.27
config 136/301=[ 2.25 5.25] weight = 0.075 adjusted weight = 0.003 neff = 531.30
config 137/301=[ -2.25 5.25] weight = 0.001 adjusted weight = 0.000 neff = 684.81
config 138/301=[ -2.25 -5.25] weight = 0.009 adjusted weight = 0.000 neff = 634.86
config 139/301=[ 2.25 -5.25] weight = 0.009 adjusted weight = 0.000 neff = 502.62
config 140/301=[ 3.75 4.50] weight = 0.004 adjusted weight = 0.000 neff = 478.65
config 141/301=[ 0.00 -6.00] weight = 0.028 adjusted weight = 0.001 neff = 569.79
config 142/301=[ 3.75 -4.50] weight = 0.001 adjusted weight = 0.000 neff = 458.73
config 143/301=[ 0.00 6.00] weight = 0.102 adjusted weight = 0.003 neff = 612.34
config 144/301=[ 3.00 5.25] weight = 0.025 adjusted weight = 0.001 neff = 507.18
config 145/301=[ -0.75 -6.00] weight = 0.023 adjusted weight = 0.001 neff = 591.71
config 146/301=[ 0.75 -6.00] weight = 0.023 adjusted weight = 0.001 neff = 548.52
config 147/301=[ 3.00 -5.25] weight = 0.003 adjusted weight = 0.000 neff = 482.48
config 148/301=[ -3.00 -5.25] weight = 0.002 adjusted weight = 0.000 neff = 658.54
config 149/301=[ 0.75 6.00] weight = 0.173 adjusted weight = 0.006 neff = 586.64
config 150/301=[ -0.75 6.00] weight = 0.036 adjusted weight = 0.001 neff = 638.31
config 151/301=[ 1.50 6.00] weight = 0.167 adjusted weight = 0.006 neff = 561.38
config 152/301=[ -1.50 -6.00] weight = 0.013 adjusted weight = 0.000 neff = 614.04
config 153/301=[ -1.50 6.00] weight = 0.008 adjusted weight = 0.000 neff = 664.49
config 154/301=[ 1.50 -6.00] weight = 0.014 adjusted weight = 0.000 neff = 527.64
config 155/301=[ 2.25 -6.00] weight = 0.006 adjusted weight = 0.000 neff = 507.36
config 156/301=[ -2.25 -6.00] weight = 0.004 adjusted weight = 0.000 neff = 636.95
config 157/301=[ 2.25 6.00] weight = 0.099 adjusted weight = 0.003 neff = 536.54
config 158/301=[ -2.25 6.00] weight = 0.001 adjusted weight = 0.000 neff = 691.07
config 159/301=[ 3.75 -5.25] weight = 0.001 adjusted weight = 0.000 neff = 462.92
config 160/301=[ 3.75 5.25] weight = 0.006 adjusted weight = 0.000 neff = 483.51
config 161/301=[ -3.00 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 660.04
config 162/301=[ 3.00 6.00] weight = 0.035 adjusted weight = 0.001 neff = 512.27
config 163/301=[ 3.00 -6.00] weight = 0.002 adjusted weight = 0.000 neff = 487.84
config 164/301=[ 0.00 -6.75] weight = 0.012 adjusted weight = 0.000 neff = 574.77
config 165/301=[ 0.00 6.75] weight = 0.092 adjusted weight = 0.003 neff = 618.25
config 166/301=[ -0.75 6.75] weight = 0.028 adjusted weight = 0.001 neff = 644.34
config 167/301=[ 0.75 -6.75] weight = 0.012 adjusted weight = 0.000 neff = 553.86
config 168/301=[ -0.75 -6.75] weight = 0.009 adjusted weight = 0.000 neff = 596.19
config 169/301=[ 0.75 6.75] weight = 0.153 adjusted weight = 0.005 neff = 592.62
config 170/301=[ -1.50 6.75] weight = 0.004 adjusted weight = 0.000 neff = 670.81
config 171/301=[ 1.50 6.75] weight = 0.183 adjusted weight = 0.006 neff = 567.07
config 172/301=[ 1.50 -6.75] weight = 0.008 adjusted weight = 0.000 neff = 533.55
config 173/301=[ 3.75 6.00] weight = 0.008 adjusted weight = 0.000 neff = 488.49
config 174/301=[ -1.50 -6.75] weight = 0.005 adjusted weight = 0.000 neff = 617.96
config 175/301=[ 3.75 -6.00] weight = 0.001 adjusted weight = 0.000 neff = 468.72
config 176/301=[ -2.25 -6.75] weight = 0.002 adjusted weight = 0.000 neff = 640.21
config 177/301=[ -2.25 6.75] weight = 0.000 adjusted weight = 0.000 neff = 697.25
config 178/301=[ 2.25 6.75] weight = 0.119 adjusted weight = 0.004 neff = 542.10
config 179/301=[ 2.25 -6.75] weight = 0.004 adjusted weight = 0.000 neff = 513.81
config 180/301=[ 3.00 6.75] weight = 0.047 adjusted weight = 0.002 neff = 517.63
config 181/301=[ 3.00 -6.75] weight = 0.001 adjusted weight = 0.000 neff = 494.72
config 182/301=[ 0.00 7.50] weight = 0.079 adjusted weight = 0.003 neff = 624.34
config 183/301=[ 0.00 -7.50] weight = 0.004 adjusted weight = 0.000 neff = 581.38
config 184/301=[ -0.75 -7.50] weight = 0.003 adjusted weight = 0.000 neff = 602.26
config 185/301=[ -0.75 7.50] weight = 0.019 adjusted weight = 0.001 neff = 650.66
config 186/301=[ 0.75 -7.50] weight = 0.004 adjusted weight = 0.000 neff = 561.15
config 187/301=[ 0.75 7.50] weight = 0.162 adjusted weight = 0.006 neff = 598.46
config 188/301=[ 1.50 -7.50] weight = 0.003 adjusted weight = 0.000 neff = 541.34
config 189/301=[ -1.50 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 623.46
config 190/301=[ 1.50 7.50] weight = 0.203 adjusted weight = 0.007 neff = 572.88
config 191/301=[ -1.50 7.50] weight = 0.003 adjusted weight = 0.000 neff = 676.87
config 192/301=[ 3.75 6.75] weight = 0.012 adjusted weight = 0.000 neff = 493.64
config 193/301=[ 2.25 -7.50] weight = 0.002 adjusted weight = 0.000 neff = 522.23
config 194/301=[ 2.25 7.50] weight = 0.144 adjusted weight = 0.005 neff = 547.80
config 195/301=[ -2.25 -7.50] weight = 0.000 adjusted weight = 0.000 neff = 645.20
config 196/301=[ 3.00 -7.50] weight = 0.001 adjusted weight = 0.000 neff = 503.64
config 197/301=[ 3.00 7.50] weight = 0.064 adjusted weight = 0.002 neff = 523.14
config 198/301=[ 0.00 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 590.08
config 199/301=[ 0.00 8.25] weight = 0.066 adjusted weight = 0.002 neff = 630.54
config 200/301=[ 0.75 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 570.33
config 201/301=[ 0.75 8.25] weight = 0.158 adjusted weight = 0.005 neff = 604.52
config 202/301=[ -0.75 8.25] weight = 0.015 adjusted weight = 0.001 neff = 656.84
config 203/301=[ -0.75 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 610.24
config 204/301=[ 1.50 8.25] weight = 0.210 adjusted weight = 0.007 neff = 578.91
config 205/301=[ 3.75 7.50] weight = 0.017 adjusted weight = 0.001 neff = 499.09
config 206/301=[ 1.50 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 551.31
config 207/301=[ -1.50 8.25] weight = 0.002 adjusted weight = 0.000 neff = 683.29
config 208/301=[ 2.25 8.25] weight = 0.161 adjusted weight = 0.005 neff = 553.73
config 209/301=[ 2.25 -8.25] weight = 0.001 adjusted weight = 0.000 neff = 532.70
config 210/301=[ 3.00 8.25] weight = 0.084 adjusted weight = 0.003 neff = 528.85
config 211/301=[ 0.00 9.00] weight = 0.052 adjusted weight = 0.002 neff = 636.88
config 212/301=[ 0.75 9.00] weight = 0.148 adjusted weight = 0.005 neff = 610.71
config 213/301=[ -0.75 9.00] weight = 0.010 adjusted weight = 0.000 neff = 663.31
config 214/301=[ 3.75 8.25] weight = 0.025 adjusted weight = 0.001 neff = 504.61
config 215/301=[ -1.50 9.00] weight = 0.001 adjusted weight = 0.000 neff = 689.63
config 216/301=[ 1.50 9.00] weight = 0.206 adjusted weight = 0.007 neff = 585.09
config 217/301=[ 2.25 9.00] weight = 0.210 adjusted weight = 0.007 neff = 559.55
config 218/301=[ 3.00 9.00] weight = 0.102 adjusted weight = 0.003 neff = 534.79
config 219/301=[ 0.00 9.75] weight = 0.044 adjusted weight = 0.002 neff = 643.16
config 220/301=[ 3.75 9.00] weight = 0.040 adjusted weight = 0.001 neff = 510.14
config 221/301=[ -0.75 9.75] weight = 0.008 adjusted weight = 0.000 neff = 669.58
config 222/301=[ 0.75 9.75] weight = 0.136 adjusted weight = 0.005 neff = 616.99
config 223/301=[ -1.50 9.75] weight = 0.001 adjusted weight = 0.000 neff = 696.11
config 224/301=[ 1.50 9.75] weight = 0.239 adjusted weight = 0.008 neff = 591.11
config 225/301=[ 2.25 9.75] weight = 0.246 adjusted weight = 0.008 neff = 565.60
config 226/301=[ 3.00 9.75] weight = 0.153 adjusted weight = 0.005 neff = 540.51
config 227/301=[ 3.75 9.75] weight = 0.055 adjusted weight = 0.002 neff = 515.99
config 228/301=[ 0.00 10.50] weight = 0.035 adjusted weight = 0.001 neff = 649.60
config 229/301=[ -0.75 10.50] weight = 0.006 adjusted weight = 0.000 neff = 676.07
config 230/301=[ 0.75 10.50] weight = 0.121 adjusted weight = 0.004 neff = 623.35
config 231/301=[ -1.50 10.50] weight = 0.000 adjusted weight = 0.000 neff = 702.76
config 232/301=[ 1.50 10.50] weight = 0.244 adjusted weight = 0.008 neff = 597.37
config 233/301=[ 2.25 10.50] weight = 0.283 adjusted weight = 0.010 neff = 571.75
config 234/301=[ 3.00 10.50] weight = 0.198 adjusted weight = 0.007 neff = 546.53
config 235/301=[ 3.75 10.50] weight = 0.080 adjusted weight = 0.003 neff = 521.86
config 236/301=[ 0.00 11.25] weight = 0.026 adjusted weight = 0.001 neff = 656.10
config 237/301=[ -0.75 11.25] weight = 0.004 adjusted weight = 0.000 neff = 682.62
config 238/301=[ 0.75 11.25] weight = 0.106 adjusted weight = 0.004 neff = 629.77
config 239/301=[ 1.50 11.25] weight = 0.242 adjusted weight = 0.008 neff = 603.71
config 240/301=[ 2.25 11.25] weight = 0.316 adjusted weight = 0.011 neff = 577.99
config 241/301=[ 3.00 11.25] weight = 0.249 adjusted weight = 0.008 neff = 552.65
config 242/301=[ 3.75 11.25] weight = 0.119 adjusted weight = 0.004 neff = 527.76
config 243/301=[ 0.00 12.00] weight = 0.019 adjusted weight = 0.001 neff = 662.65
config 244/301=[ -0.75 12.00] weight = 0.002 adjusted weight = 0.000 neff = 689.22
config 245/301=[ 0.75 12.00] weight = 0.089 adjusted weight = 0.003 neff = 636.26
config 246/301=[ 1.50 12.00] weight = 0.234 adjusted weight = 0.008 neff = 610.11
config 247/301=[ 2.25 12.00] weight = 0.354 adjusted weight = 0.012 neff = 584.27
config 248/301=[ 3.00 12.00] weight = 0.310 adjusted weight = 0.011 neff = 558.83
config 249/301=[ 3.75 12.00] weight = 0.167 adjusted weight = 0.006 neff = 533.80
config 250/301=[ 0.00 12.75] weight = 0.014 adjusted weight = 0.000 neff = 669.24
config 251/301=[ 0.75 12.75] weight = 0.074 adjusted weight = 0.002 neff = 642.79
config 252/301=[ -0.75 12.75] weight = 0.001 adjusted weight = 0.000 neff = 695.86
config 253/301=[ 1.50 12.75] weight = 0.221 adjusted weight = 0.007 neff = 616.56
config 254/301=[ 2.25 12.75] weight = 0.381 adjusted weight = 0.013 neff = 590.63
config 255/301=[ 3.00 12.75] weight = 0.384 adjusted weight = 0.013 neff = 565.06
config 256/301=[ 3.75 12.75] weight = 0.225 adjusted weight = 0.008 neff = 539.96
config 257/301=[ 0.00 13.50] weight = 0.010 adjusted weight = 0.000 neff = 675.86
config 258/301=[ 0.75 13.50] weight = 0.059 adjusted weight = 0.002 neff = 649.36
config 259/301=[ -0.75 13.50] weight = 0.001 adjusted weight = 0.000 neff = 702.52
config 260/301=[ 1.50 13.50] weight = 0.202 adjusted weight = 0.007 neff = 623.06
config 261/301=[ 2.25 13.50] weight = 0.398 adjusted weight = 0.014 neff = 597.04
config 262/301=[ 3.00 13.50] weight = 0.457 adjusted weight = 0.015 neff = 571.37
config 263/301=[ 3.75 13.50] weight = 0.302 adjusted weight = 0.010 neff = 546.15
config 264/301=[ 0.00 14.25] weight = 0.006 adjusted weight = 0.000 neff = 682.52
config 265/301=[ -0.75 14.25] weight = 0.000 adjusted weight = 0.000 neff = 709.19
config 266/301=[ 0.75 14.25] weight = 0.045 adjusted weight = 0.002 neff = 655.98
config 267/301=[ 1.50 14.25] weight = 0.179 adjusted weight = 0.006 neff = 629.61
config 268/301=[ 2.25 14.25] weight = 0.405 adjusted weight = 0.014 neff = 603.50
config 269/301=[ 3.00 14.25] weight = 0.521 adjusted weight = 0.018 neff = 577.75
config 270/301=[ 3.75 14.25] weight = 0.406 adjusted weight = 0.014 neff = 552.35
config 271/301=[ 0.00 15.00] weight = 0.004 adjusted weight = 0.000 neff = 689.20
config 272/301=[ 0.75 15.00] weight = 0.033 adjusted weight = 0.001 neff = 662.62
config 273/301=[ 1.50 15.00] weight = 0.153 adjusted weight = 0.005 neff = 636.19
config 274/301=[ 2.25 15.00] weight = 0.399 adjusted weight = 0.014 neff = 610.01
config 275/301=[ 3.00 15.00] weight = 0.592 adjusted weight = 0.020 neff = 584.14
config 276/301=[ 3.75 15.00] weight = 0.519 adjusted weight = 0.018 neff = 558.65
config 277/301=[ 0.00 15.75] weight = 0.003 adjusted weight = 0.000 neff = 695.91
config 278/301=[ 0.75 15.75] weight = 0.024 adjusted weight = 0.001 neff = 669.29
config 279/301=[ 1.50 15.75] weight = 0.127 adjusted weight = 0.004 neff = 642.81
config 280/301=[ 2.25 15.75] weight = 0.379 adjusted weight = 0.013 neff = 616.55
config 281/301=[ 3.00 15.75] weight = 0.644 adjusted weight = 0.022 neff = 590.60
config 282/301=[ 3.75 15.75] weight = 0.643 adjusted weight = 0.022 neff = 565.00
config 283/301=[ 0.00 16.50] weight = 0.001 adjusted weight = 0.000 neff = 702.62
config 284/301=[ 0.75 16.50] weight = 0.016 adjusted weight = 0.001 neff = 675.98
config 285/301=[ 1.50 16.50] weight = 0.101 adjusted weight = 0.003 neff = 649.45
config 286/301=[ 2.25 16.50] weight = 0.348 adjusted weight = 0.012 neff = 623.13
config 287/301=[ 3.00 16.50] weight = 0.677 adjusted weight = 0.023 neff = 597.09
config 288/301=[ 3.75 16.50] weight = 0.771 adjusted weight = 0.026 neff = 571.39
config 289/301=[ 0.00 17.25] weight = 0.001 adjusted weight = 0.000 neff = 709.36
config 290/301=[ 0.75 17.25] weight = 0.011 adjusted weight = 0.000 neff = 682.69
config 291/301=[ 1.50 17.25] weight = 0.077 adjusted weight = 0.003 neff = 656.12
config 292/301=[ 2.25 17.25] weight = 0.307 adjusted weight = 0.010 neff = 629.74
config 293/301=[ 3.00 17.25] weight = 0.687 adjusted weight = 0.023 neff = 603.62
config 294/301=[ 3.75 17.25] weight = 0.895 adjusted weight = 0.030 neff = 577.82
config 295/301=[ 0.00 18.00] weight = 0.000 adjusted weight = 0.000 neff = 716.10
config 296/301=[ 0.75 18.00] weight = 0.007 adjusted weight = 0.000 neff = 689.42
config 297/301=[ 1.50 18.00] weight = 0.057 adjusted weight = 0.002 neff = 662.81
config 298/301=[ 2.25 18.00] weight = 0.261 adjusted weight = 0.009 neff = 636.37
config 299/301=[ 3.00 18.00] weight = 0.671 adjusted weight = 0.023 neff = 610.18
config 300/301=[ 3.75 18.00] weight = 1.000 adjusted weight = 0.034 neff = 584.29
Done.
Expected effective number of parameters: 582.540(32.422), eqv.#replicates: 5.225
DIC:
Mean of Deviance................. 2673.28
Deviance at Mean................. 2184.42
Effective number of parameters... 488.864
DIC.............................. 3162.14
Marginal likelihood: Integration -1375.547855 Gaussian-approx -1376.806375
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d330812ad0/Model.ini]
Preparations : 0.170 seconds
Approx inference: 1341.975 seconds [0.1|0.0|1.2|85.5|13.2]%
Output : 1.209 seconds
---------------------------------
Total : 1343.355 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d38948d59] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d32355a02]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ca83a6f]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d32355a02]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 1, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 1, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 2, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31804b763] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35120f7a2]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35aed01cc]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35da3d0e6]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d350cbd275] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d3756628c3] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d35fe566c] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37cdbcf86] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d34315a674] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d342632c14] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d37ce2f718] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d318cc88b6] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/data.files/filee1d31c237172] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7f97b3e16150
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1702.471649 fn= 1 theta= 3.990000 4.000000 range=[-2.762 4.906]
max.logdens= -1695.076127 fn= 5 theta= 3.271936 3.314491 range=[-2.693 5.140]
max.logdens= -1695.022510 fn= 6 theta= 3.271936 3.304491 range=[-2.692 5.143]
max.logdens= -1694.989833 fn= 8 theta= 3.261936 3.314491 range=[-2.693 5.140]
max.logdens= -1688.387651 fn= 11 theta= 2.855685 2.922570 range=[-2.657 5.276]
max.logdens= -1688.250602 fn= 13 theta= 2.845685 2.922570 range=[-2.657 5.276]
max.logdens= -1677.556670 fn= 16 theta= 2.374058 2.469092 range=[-2.632 5.421]
max.logdens= -1677.360729 fn= 17 theta= 2.364058 2.469092 range=[-2.632 5.422]
max.logdens= -1660.981964 fn= 21 theta= 1.833774 1.960388 range=[-2.653 5.560]
max.logdens= -1660.904443 fn= 22 theta= 1.833774 1.950388 range=[-2.653 5.561]
max.logdens= -1660.706016 fn= 23 theta= 1.823774 1.960388 range=[-2.655 5.562]
max.logdens= -1641.479997 fn= 26 theta= 1.285955 1.444589 range=[-2.754 5.660]
max.logdens= -1641.174086 fn= 27 theta= 1.275955 1.444589 range=[-2.756 5.661]
max.logdens= -1628.548621 fn= 31 theta= 0.848568 1.032767 range=[-2.871 5.684]
max.logdens= -1628.329161 fn= 32 theta= 0.838568 1.032767 range=[-2.874 5.685]
max.logdens= -1624.564114 fn= 36 theta= 0.601664 0.800293 range=[-2.944 5.673]
max.logdens= -1624.449674 fn= 37 theta= 0.591664 0.800293 range=[-2.946 5.673]
max.logdens= -1624.092660 fn= 41 theta= 0.407548 0.617524 range=[-3.002 5.652]
max.logdens= -1624.086131 fn= 42 theta= 0.397548 0.617524 range=[-3.005 5.652]
max.logdens= -1624.032809 fn= 45 theta= 0.407548 0.627524 range=[-3.002 5.653]
max.logdens= -1623.991077 fn= 46 theta= 0.469503 0.675858 range=[-2.983 5.659]
max.logdens= -1623.903769 fn= 47 theta= 0.459503 0.675858 range=[-2.986 5.659]
max.logdens= -1623.898638 fn= 50 theta= 0.469503 0.685858 range=[-2.983 5.661]
Iter=1 |grad|=6.73 |x-x.old|=3.43 |f-f.old|=78.5
max.logdens= -1623.792972 fn= 52 theta= 0.412940 0.670587 range=[-3.000 5.658]
max.logdens= -1623.778943 fn= 53 theta= 0.402940 0.670587 range=[-3.003 5.658]
max.logdens= -1623.738793 fn= 56 theta= 0.412940 0.680587 range=[-3.000 5.659]
max.logdens= -1623.724419 fn= 62 theta= 0.396849 0.679088 range=[-3.005 5.659]
Iter=2 |grad|=5.72 |x-x.old|=0.0516 |f-f.old|=0.202
max.logdens= -1623.393720 fn= 63 theta= 0.382811 0.738335 range=[-3.009 5.664]
max.logdens= -1623.387622 fn= 64 theta= 0.372811 0.738335 range=[-3.012 5.664]
max.logdens= -1623.340520 fn= 67 theta= 0.382811 0.748335 range=[-3.009 5.665]
max.logdens= -1622.753150 fn= 68 theta= 0.356242 0.869390 range=[-3.018 5.675]
max.logdens= -1622.744339 fn= 70 theta= 0.346242 0.869390 range=[-3.021 5.674]
max.logdens= -1622.701317 fn= 72 theta= 0.356242 0.879390 range=[-3.018 5.675]
max.logdens= -1620.953350 fn= 73 theta= 0.117127 2.048887 range=[-3.168 5.596]
max.logdens= -1620.860963 fn= 76 theta= 0.127127 2.048887 range=[-3.164 5.597]
max.logdens= -1620.838082 fn= 78 theta= 0.164329 1.816052 range=[-3.129 5.637]
max.logdens= -1620.819114 fn= 80 theta= 0.164329 1.806052 range=[-3.129 5.638]
max.logdens= -1620.743799 fn= 81 theta= 0.174329 1.816052 range=[-3.125 5.639]
Iter=3 |grad|=6.9 |x-x.old|=0.828 |f-f.old|=2.95
max.logdens= -1620.423514 fn= 84 theta= 0.269007 1.995104 range=[-3.103 5.626]
max.logdens= -1620.397805 fn= 85 theta= 0.259007 1.995104 range=[-3.107 5.625]
Iter=4 |grad|=0.925 |x-x.old|=0.13 |f-f.old|=0.432
max.logdens= -1620.358948 fn= 96 theta= 0.243119 2.106484 range=[-3.123 5.604]
max.logdens= -1620.358849 fn= 98 theta= 0.253119 2.106484 range=[-3.119 5.606]
max.logdens= -1620.351081 fn= 99 theta= 0.233119 2.106484 range=[-3.127 5.603]
max.logdens= -1620.348998 fn= 100 theta= 0.243119 2.116484 range=[-3.124 5.602]
max.logdens= -1620.337685 fn= 101 theta= 0.236963 2.164890 range=[-3.130 5.593]
max.logdens= -1620.336652 fn= 105 theta= 0.236963 2.174890 range=[-3.131 5.591]
max.logdens= -1620.332950 fn= 106 theta= 0.234060 2.192428 range=[-3.134 5.587]
max.logdens= -1620.332909 fn= 110 theta= 0.234060 2.202428 range=[-3.135 5.585]
max.logdens= -1620.332444 fn= 112 theta= 0.233730 2.195556 range=[-3.135 5.586]
max.logdens= -1620.331503 fn= 118 theta= 0.233718 2.195668 range=[-3.135 5.586]
Iter=5 |grad|=0.512 |x-x.old|=0.157 |f-f.old|=0.0732 Reached numerical limit!
Number of function evaluations = 132
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
97.303298 6.636080
6.636080 11.532900
Eigenvectors of the Hessian
0.997055 -0.076686
0.076686 0.997055
Eigenvalues of the Hessian
97.813696
11.022502
StDev/Correlation matrix (scaled inverse Hessian)
0.103426 -0.198097
0.300417
Compute corrected stdev for theta[0]: negative 1.111033 positive 1.191627
Compute corrected stdev for theta[1]: negative 1.986974 positive 2.946271
config 0=[ 0.00 0.00] log(rel.dens)=-0.06, [1] accept, compute, 11.20s
config 1=[ 0.00 -0.75] log(rel.dens)=-0.06, [2] accept, compute, 11.32s
config 2=[ -0.75 0.00] log(rel.dens)=-0.21, [3] accept, compute, 11.34s
config 3=[ 0.75 0.00] log(rel.dens)=-0.37, [0] accept, compute, 11.47s
config 4=[ 0.00 0.75] log(rel.dens)=-0.01, [1] accept, compute, 12.60s
config 5=[ -0.75 -0.75] log(rel.dens)=-0.26, [3] accept, compute, 12.71s
config 6=[ -0.75 0.75] log(rel.dens)=-0.42, [2] accept, compute, 12.91s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.30, [0] accept, compute, 12.75s
config 8=[ 0.75 0.75] log(rel.dens)=-0.25, [1] accept, compute, 12.12s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.32, [3] accept, compute, 12.20s
config 10=[ -1.50 0.00] log(rel.dens)=-0.96, [2] accept, compute, 12.14s
config 11=[ 1.50 0.00] log(rel.dens)=-0.86, [0] accept, compute, 12.53s
config 12=[ 0.00 1.50] log(rel.dens)=-0.18, [1] accept, compute, 11.88s
config 13=[ -0.75 1.50] log(rel.dens)=-0.38, [3] accept, compute, 12.08s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.46, [2] accept, compute, 12.09s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.40, [0] accept, compute, 12.09s
config 16=[ 0.75 1.50] log(rel.dens)=-0.28, [1] accept, compute, 13.17s
config 17=[ -1.50 -0.75] log(rel.dens)=-1.00, [3] accept, compute, 13.08s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.96, [2] accept, compute, 12.97s
config 19=[ -1.50 0.75] log(rel.dens)=-0.99, [0] accept, compute, 13.29s
config 20=[ 1.50 0.75] log(rel.dens)=-0.85, [1] accept, compute, 15.12s
config 21=[ -1.50 -1.50] log(rel.dens)=-1.02, [3] accept, compute, 14.94s
config 22=[ 1.50 1.50] log(rel.dens)=-0.86, [2] accept, compute, 15.10s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.06, [0] accept, compute, 15.18s
config 24=[ -1.50 1.50] log(rel.dens)=-1.18, [1] accept, compute, 14.66s
config 25=[ 2.25 0.00] log(rel.dens)=-1.87, [2] accept, compute, 14.23s
config 26=[ 0.00 -2.25] log(rel.dens)=-0.52, [3] accept, compute, 14.53s
config 27=[ -2.25 0.00] log(rel.dens)=-2.07, [0] accept, compute, 14.41s
config 28=[ 2.25 0.75] log(rel.dens)=-1.72, [2] accept, compute, 13.22s
config 29=[ 0.00 2.25] log(rel.dens)=-0.20, [1] accept, compute, 13.34s
config 30=[ -0.75 -2.25] log(rel.dens)=-0.76, [3] accept, compute, 13.50s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.74, [0] accept, compute, 13.76s
config 32=[ 2.25 -0.75] log(rel.dens)=-1.84, [1] accept, compute, 11.70s
config 33=[ -2.25 -0.75] log(rel.dens)=-2.02, [2] accept, compute, 11.92s
config 34=[ -0.75 2.25] log(rel.dens)=-0.57, [3] accept, compute, 11.72s
config 35=[ -2.25 0.75] log(rel.dens)=-2.24, [0] accept, compute, 11.93s
config 36=[ -2.25 -1.50] log(rel.dens)=-2.10, [2] accept, compute, 13.50s
config 37=[ 0.75 2.25] log(rel.dens)=-0.29, [1] accept, compute, 13.68s
config 38=[ 2.25 -1.50] log(rel.dens)=-1.99, [3] accept, compute, 13.63s
config 39=[ -1.50 -2.25] log(rel.dens)=-1.28, [0] accept, compute, 13.28s
config 40=[ 2.25 1.50] log(rel.dens)=-1.70, [2] accept, compute, 13.47s
config 41=[ -1.50 2.25] log(rel.dens)=-1.43, [1] accept, compute, 13.57s
config 42=[ 1.50 -2.25] log(rel.dens)=-1.38, [3] accept, compute, 13.75s
config 43=[ -2.25 1.50] log(rel.dens)=-2.49, [0] accept, compute, 13.03s
config 44=[ 1.50 2.25] log(rel.dens)=-0.89, [2] accept, compute, 10.54s
config 45=[ 0.00 3.00] log(rel.dens)=-0.36, [1] accept, compute, 10.62s
config 46=[ 3.00 0.00] log(rel.dens)=-3.02, [3] accept, compute, 10.54s
config 47=[ 0.00 -3.00] log(rel.dens)=-0.97, [0] accept, compute, 10.48s
config 48=[ -3.00 0.00] log(rel.dens)=-3.78, [2] accept, compute, 10.38s
config 49=[ -0.75 -3.00] log(rel.dens)=-1.15, [1] accept, compute, 10.28s
config 50=[ -3.00 0.75] log(rel.dens)=-4.08, [3] accept, compute, 10.34s
config 51=[ 3.00 0.75] log(rel.dens)=-2.98, [0] accept, compute, 10.34s
config 52=[ -0.75 3.00] log(rel.dens)=-0.79, [2] accept, compute, 11.50s
config 53=[ 0.75 -3.00] log(rel.dens)=-1.16, [1] accept, compute, 11.45s
config 54=[ 3.00 -0.75] log(rel.dens)=-3.13, [0] accept, compute, 11.11s
config 55=[ 0.75 3.00] log(rel.dens)=-0.39, [3] accept, compute, 11.37s
config 56=[ -3.00 -0.75] log(rel.dens)=-3.64, [2] accept, compute, 10.54s
config 57=[ 2.25 2.25] log(rel.dens)=-1.70, [1] accept, compute, 10.55s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.31, [0] accept, compute, 10.41s
config 59=[ -2.25 -2.25] log(rel.dens)=-2.33, [3] accept, compute, 10.60s
config 60=[ -2.25 2.25] log(rel.dens)=-2.98, [2] accept, compute, 11.08s
config 61=[ -1.50 3.00] log(rel.dens)=-1.75, [1] accept, compute, 11.04s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.70, [0] accept, compute, 11.16s
config 63=[ 1.50 -3.00] log(rel.dens)=-1.70, [3] accept, compute, 10.96s
config 64=[ 1.50 3.00] log(rel.dens)=-0.85, [1] accept, compute, 11.03s
config 65=[ 3.00 1.50] log(rel.dens)=-2.98, [2] accept, compute, 11.18s
config 66=[ -3.00 1.50] log(rel.dens)=-4.54, [0] accept, compute, 10.97s
config 67=[ -1.50 -3.00] log(rel.dens)=-1.75, [3] accept, compute, 11.66s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.21, [1] accept, compute, 11.15s
config 69=[ -2.25 -3.00] log(rel.dens)=-2.82, [2] accept, compute, 11.19s
config 70=[ 2.25 -3.00] log(rel.dens)=-2.56, [0] accept, compute, 11.14s
config 71=[ 0.00 -3.75] log(rel.dens)=-1.62, [3] accept, compute, 11.08s
config 72=[ -3.00 2.25] log(rel.dens)=-4.88, [1] accept, compute, 10.83s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.40, [2] accept, compute, 10.82s
config 74=[ 3.00 2.25] log(rel.dens)=-2.94, [0] accept, compute, 10.91s
config 75=[ -3.00 -2.25] log(rel.dens)=-3.88, [3] accept, compute, 10.77s
config 76=[ 2.25 3.00] log(rel.dens)=-1.74, [1] accept, compute, 10.55s
config 77=[ 0.00 3.75] log(rel.dens)=-0.55, [2] accept, compute, 10.76s
config 78=[ -3.75 0.00] log(rel.dens)=-6.09, reject, 0.30s
config 79=[ -2.25 3.00] log(rel.dens)=-3.27, [0] accept, compute, 10.70s
config 80=[ 3.75 0.00] log(rel.dens)=-4.62, [3] accept, compute, 10.70s
config 81=[ -0.75 3.75] log(rel.dens)=-1.14, [2] accept, compute, 10.67s
config 82=[ 0.75 -3.75] log(rel.dens)=-1.78, [1] accept, compute, 10.81s
config 83=[ 3.75 0.75] log(rel.dens)=-4.59, [0] accept, compute, 10.82s
config 84=[ 3.75 -0.75] log(rel.dens)=-4.63, [3] accept, compute, 10.62s
config 85=[ 0.75 3.75] log(rel.dens)=-0.50, [2] accept, compute, 10.86s
config 86=[ -0.75 -3.75] log(rel.dens)=-1.83, [1] accept, compute, 10.95s
config 87=[ -1.50 3.75] log(rel.dens)=-2.14, [0] accept, compute, 11.06s
config 88=[ 3.75 1.50] log(rel.dens)=-4.60, [3] accept, compute, 10.78s
config 89=[ -1.50 -3.75] log(rel.dens)=-2.45, [2] accept, compute, 11.33s
config 90=[ 1.50 -3.75] log(rel.dens)=-2.23, [1] accept, compute, 11.35s
config 91=[ 1.50 3.75] log(rel.dens)=-0.91, [0] accept, compute, 11.27s
config 92=[ 3.75 -1.50] log(rel.dens)=-4.69, [3] accept, compute, 11.38s
config 93=[ -3.00 -3.00] log(rel.dens)=-4.30, [2] accept, compute, 11.24s
config 94=[ 3.00 -3.00] log(rel.dens)=-3.63, [1] accept, compute, 11.37s
config 95=[ 3.00 3.00] log(rel.dens)=-2.93, [0] accept, compute, 11.21s
config 96=[ -3.00 3.00] log(rel.dens)=-5.44, [3] accept, compute, 11.13s
config 97=[ 2.25 -3.75] log(rel.dens)=-3.01, [2] accept, compute, 10.62s
config 98=[ 2.25 3.75] log(rel.dens)=-1.73, [1] accept, compute, 10.47s
config 99=[ -2.25 -3.75] log(rel.dens)=-3.53, [0] accept, compute, 10.54s
config 100=[ 3.75 -2.25] log(rel.dens)=-4.89, [3] accept, compute, 10.55s
config 101=[ 3.75 2.25] log(rel.dens)=-4.49, [2] accept, compute, 10.63s
config 102=[ -2.25 3.75] log(rel.dens)=-3.68, [1] accept, compute, 10.56s
config 103=[ 0.00 4.50] log(rel.dens)=-0.74, [0] accept, compute, 10.57s
config 104=[ 0.00 -4.50] log(rel.dens)=-2.53, [3] accept, compute, 10.62s
config 105=[ 4.50 0.00] log(rel.dens)=-6.36, reject, 0.33s
config 106=[ 4.50 -0.75] log(rel.dens)=-6.45, reject, 0.33s
config 107=[ 0.75 -4.50] log(rel.dens)=-2.60, [0] accept, compute, 10.51s
config 108=[ -0.75 4.50] log(rel.dens)=-1.33, [3] accept, compute, 10.48s
config 109=[ 0.75 4.50] log(rel.dens)=-0.64, [2] accept, compute, 10.47s
config 110=[ -0.75 -4.50] log(rel.dens)=-2.83, [1] accept, compute, 10.51s
config 111=[ 1.50 4.50] log(rel.dens)=-1.04, [2] accept, compute, 10.49s
config 112=[ -1.50 4.50] log(rel.dens)=-2.46, [0] accept, compute, 10.57s
config 113=[ -1.50 -4.50] log(rel.dens)=-3.46, [3] accept, compute, 10.64s
config 114=[ 1.50 -4.50] log(rel.dens)=-2.98, [1] accept, compute, 10.68s
config 115=[ -3.00 -3.75] log(rel.dens)=-5.00, [0] accept, compute, 10.94s
config 116=[ 3.75 -3.00] log(rel.dens)=-4.99, [2] accept, compute, 11.10s
config 117=[ 3.00 3.75] log(rel.dens)=-2.93, [3] accept, compute, 11.08s
config 118=[ -3.00 3.75] log(rel.dens)=-5.88, [1] accept, compute, 11.03s
config 119=[ 3.00 -3.75] log(rel.dens)=-4.09, [2] accept, compute, 10.47s
config 120=[ 3.75 3.00] log(rel.dens)=-4.52, [0] accept, compute, 10.81s
config 121=[ 2.25 -4.50] log(rel.dens)=-3.65, [3] accept, compute, 10.76s
config 122=[ -2.25 -4.50] log(rel.dens)=-4.52, [1] accept, compute, 10.73s
config 123=[ -2.25 4.50] log(rel.dens)=-4.22, [2] accept, compute, 12.24s
config 124=[ 2.25 4.50] log(rel.dens)=-1.73, [0] accept, compute, 12.31s
config 125=[ 0.00 5.25] log(rel.dens)=-0.95, [3] accept, compute, 12.35s
config 126=[ 0.00 -5.25] log(rel.dens)=-3.77, [1] accept, compute, 12.35s
config 127=[ -0.75 -5.25] log(rel.dens)=-4.13, [2] accept, compute, 12.77s
config 128=[ 3.75 3.75] log(rel.dens)=-4.42, [0] accept, compute, 12.82s
config 129=[ -0.75 5.25] log(rel.dens)=-1.71, [3] accept, compute, 12.63s
config 130=[ 0.75 -5.25] log(rel.dens)=-3.80, [1] accept, compute, 12.62s
config 131=[ -3.00 -4.50] log(rel.dens)=-6.04, reject, 0.36s
config 132=[ -3.00 4.50] log(rel.dens)=-6.39, reject, 0.43s
config 133=[ 0.75 5.25] log(rel.dens)=-0.76, [2] accept, compute, 11.05s
config 134=[ 3.75 -3.75] log(rel.dens)=-5.26, [0] accept, compute, 11.17s
config 135=[ 3.00 -4.50] log(rel.dens)=-4.56, [1] accept, compute, 11.29s
config 136=[ 3.00 4.50] log(rel.dens)=-2.92, [3] accept, compute, 11.28s
config 137=[ 1.50 5.25] log(rel.dens)=-1.10, [2] accept, compute, 10.56s
config 138=[ -1.50 5.25] log(rel.dens)=-2.92, [0] accept, compute, 10.55s
config 139=[ -1.50 -5.25] log(rel.dens)=-4.85, [1] accept, compute, 10.53s
config 140=[ -2.25 -5.25] log(rel.dens)=-6.02, reject, 0.25s
config 141=[ 1.50 -5.25] log(rel.dens)=-4.04, [3] accept, compute, 10.37s
config 142=[ 2.25 5.25] log(rel.dens)=-1.79, [2] accept, compute, 10.18s
config 143=[ -2.25 5.25] log(rel.dens)=-4.72, [0] accept, compute, 10.10s
config 144=[ 2.25 -5.25] log(rel.dens)=-4.57, [1] accept, compute, 10.35s
config 145=[ 3.75 4.50] log(rel.dens)=-4.36, [3] accept, compute, 10.26s
config 146=[ 3.75 -4.50] log(rel.dens)=-5.70, [2] accept, compute, 10.44s
config 147=[ 0.00 -6.00] log(rel.dens)=-5.47, [0] accept, compute, 10.54s
config 148=[ 0.00 6.00] log(rel.dens)=-1.15, [1] accept, compute, 10.60s
config 149=[ 3.00 5.25] log(rel.dens)=-2.90, [3] accept, compute, 10.41s
config 150=[ 0.75 -6.00] log(rel.dens)=-5.30, [2] accept, compute, 10.60s
config 151=[ -0.75 -6.00] log(rel.dens)=-5.95, [0] accept, compute, 10.47s
config 152=[ 0.75 6.00] log(rel.dens)=-0.86, [3] accept, compute, 10.49s
config 153=[ 3.00 -5.25] log(rel.dens)=-5.38, [1] accept, compute, 10.68s
config 154=[ -1.50 -6.00] log(rel.dens)=-6.71, reject, 0.33s
config 155=[ -0.75 6.00] log(rel.dens)=-1.92, [2] accept, compute, 10.92s
config 156=[ 1.50 6.00] log(rel.dens)=-1.08, [0] accept, compute, 10.78s
config 157=[ -1.50 6.00] log(rel.dens)=-3.30, [1] accept, compute, 10.75s
config 158=[ 1.50 -6.00] log(rel.dens)=-5.45, [3] accept, compute, 10.81s
config 159=[ 3.75 -5.25] log(rel.dens)=-6.33, reject, 0.31s
config 160=[ 2.25 -6.00] log(rel.dens)=-5.89, [2] accept, compute, 10.43s
config 161=[ -2.25 6.00] log(rel.dens)=-5.12, [0] accept, compute, 10.53s
config 162=[ 3.00 -6.00] log(rel.dens)=-6.56, reject, 0.31s
config 163=[ 0.00 -6.75] log(rel.dens)=-7.67, reject, 0.34s
config 164=[ 2.25 6.00] log(rel.dens)=-1.71, [1] accept, compute, 10.40s
config 165=[ 3.75 5.25] log(rel.dens)=-4.27, [3] accept, compute, 10.44s
config 166=[ 3.00 6.00] log(rel.dens)=-2.75, [2] accept, compute, 10.55s
config 167=[ 0.00 6.75] log(rel.dens)=-1.34, [0] accept, compute, 10.65s
config 168=[ -0.75 6.75] log(rel.dens)=-2.19, [1] accept, compute, 10.66s
config 169=[ 0.75 6.75] log(rel.dens)=-0.96, [3] accept, compute, 10.81s
config 170=[ -1.50 6.75] log(rel.dens)=-3.64, [2] accept, compute, 10.08s
config 171=[ 1.50 6.75] log(rel.dens)=-1.08, [0] accept, compute, 10.20s
config 172=[ 3.75 6.00] log(rel.dens)=-4.14, [1] accept, compute, 10.18s
config 173=[ -2.25 6.75] log(rel.dens)=-5.62, [3] accept, compute, 10.13s
config 174=[ 2.25 6.75] log(rel.dens)=-1.66, [2] accept, compute, 10.38s
config 175=[ 3.00 6.75] log(rel.dens)=-2.62, [0] accept, compute, 10.49s
config 176=[ 0.00 7.50] log(rel.dens)=-1.51, [1] accept, compute, 10.43s
config 177=[ -0.75 7.50] log(rel.dens)=-2.47, [3] accept, compute, 10.48s
config 178=[ 0.75 7.50] log(rel.dens)=-1.04, [2] accept, compute, 11.18s
config 179=[ -2.25 7.50] log(rel.dens)=-6.14, reject, 0.34s
config 180=[ 1.50 7.50] log(rel.dens)=-1.08, [0] accept, compute, 10.96s
config 181=[ -1.50 7.50] log(rel.dens)=-4.00, [1] accept, compute, 10.98s
config 182=[ 3.75 6.75] log(rel.dens)=-3.98, [3] accept, compute, 11.15s
config 183=[ 2.25 7.50] log(rel.dens)=-1.59, [2] accept, compute, 11.89s
config 184=[ 3.00 7.50] log(rel.dens)=-2.48, [0] accept, compute, 11.79s
config 185=[ 0.00 8.25] log(rel.dens)=-1.67, [1] accept, compute, 11.72s
config 186=[ 0.75 8.25] log(rel.dens)=-1.12, [3] accept, compute, 11.92s
config 187=[ -0.75 8.25] log(rel.dens)=-2.76, [2] accept, compute, 10.55s
config 188=[ 3.75 7.50] log(rel.dens)=-3.78, [1] accept, compute, 10.54s
config 189=[ 1.50 8.25] log(rel.dens)=-1.07, [0] accept, compute, 10.62s
config 190=[ -1.50 8.25] log(rel.dens)=-4.40, [3] accept, compute, 10.46s
config 191=[ 2.25 8.25] log(rel.dens)=-1.48, [2] accept, compute, 10.43s
config 192=[ 3.00 8.25] log(rel.dens)=-2.40, [1] accept, compute, 10.32s
config 193=[ 0.00 9.00] log(rel.dens)=-1.83, [0] accept, compute, 10.46s
config 194=[ 0.75 9.00] log(rel.dens)=-1.18, [3] accept, compute, 10.52s
config 195=[ -0.75 9.00] log(rel.dens)=-3.04, [2] accept, compute, 10.86s
config 196=[ 3.75 8.25] log(rel.dens)=-3.59, [1] accept, compute, 10.93s
config 197=[ -1.50 9.00] log(rel.dens)=-4.80, [0] accept, compute, 10.95s
config 198=[ 1.50 9.00] log(rel.dens)=-1.12, [3] accept, compute, 11.29s
config 199=[ 2.25 9.00] log(rel.dens)=-1.36, [2] accept, compute, 12.26s
config 200=[ 3.00 9.00] log(rel.dens)=-2.21, [1] accept, compute, 11.93s
config 201=[ 0.00 9.75] log(rel.dens)=-2.00, [0] accept, compute, 12.12s
config 202=[ 3.75 9.00] log(rel.dens)=-3.27, [3] accept, compute, 11.90s
config 203=[ -0.75 9.75] log(rel.dens)=-3.32, [2] accept, compute, 10.32s
config 204=[ 0.75 9.75] log(rel.dens)=-1.24, [1] accept, compute, 10.46s
config 205=[ -1.50 9.75] log(rel.dens)=-5.21, [0] accept, compute, 10.38s
config 206=[ 1.50 9.75] log(rel.dens)=-1.00, [3] accept, compute, 10.53s
config 207=[ 2.25 9.75] log(rel.dens)=-1.23, [2] accept, compute, 10.93s
config 208=[ 3.00 9.75] log(rel.dens)=-1.91, [1] accept, compute, 11.01s
config 209=[ 3.75 9.75] log(rel.dens)=-3.02, [0] accept, compute, 11.02s
config 210=[ 0.00 10.50] log(rel.dens)=-2.17, [3] accept, compute, 11.01s
config 211=[ -0.75 10.50] log(rel.dens)=-3.61, [2] accept, compute, 10.96s
config 212=[ -1.50 10.50] log(rel.dens)=-5.69, [0] accept, compute, 11.18s
config 213=[ 0.75 10.50] log(rel.dens)=-1.30, [1] accept, compute, 11.53s
config 214=[ 1.50 10.50] log(rel.dens)=-0.95, [3] accept, compute, 11.28s
config 215=[ 2.25 10.50] log(rel.dens)=-1.09, [2] accept, compute, 11.52s
config 216=[ 3.00 10.50] log(rel.dens)=-1.70, [0] accept, compute, 11.66s
config 217=[ 3.75 10.50] log(rel.dens)=-2.69, [1] accept, compute, 11.65s
config 218=[ 0.00 11.25] log(rel.dens)=-2.35, [3] accept, compute, 11.66s
config 219=[ -1.50 11.25] log(rel.dens)=-6.06, reject, 0.33s
config 220=[ -0.75 11.25] log(rel.dens)=-3.92, [2] accept, compute, 10.65s
config 221=[ 0.75 11.25] log(rel.dens)=-1.36, [0] accept, compute, 10.59s
config 222=[ 1.50 11.25] log(rel.dens)=-0.91, [1] accept, compute, 10.68s
config 223=[ 2.25 11.25] log(rel.dens)=-0.96, [3] accept, compute, 10.86s
config 224=[ 3.00 11.25] log(rel.dens)=-1.46, [2] accept, compute, 10.97s
config 225=[ 0.00 12.00] log(rel.dens)=-2.55, [1] accept, compute, 10.97s
config 226=[ 3.75 11.25] log(rel.dens)=-2.37, [0] accept, compute, 11.18s
config 227=[ -0.75 12.00] log(rel.dens)=-4.24, [3] accept, compute, 11.20s
config 228=[ 0.75 12.00] log(rel.dens)=-1.44, [2] accept, compute, 11.33s
config 229=[ 2.25 12.00] log(rel.dens)=-0.81, [0] accept, compute, 11.54s
config 230=[ 1.50 12.00] log(rel.dens)=-0.87, [1] accept, compute, 11.66s
config 231=[ 3.00 12.00] log(rel.dens)=-1.23, [3] accept, compute, 11.65s
config 232=[ 3.75 12.00] log(rel.dens)=-2.06, [2] accept, compute, 10.82s
config 233=[ 0.75 12.75] log(rel.dens)=-1.68, [1] accept, compute, 10.68s
config 234=[ 0.00 12.75] log(rel.dens)=-2.77, [0] accept, compute, 10.83s
config 235=[ -0.75 12.75] log(rel.dens)=-4.59, [3] accept, compute, 11.07s
config 236=[ 1.50 12.75] log(rel.dens)=-0.85, [2] accept, compute, 10.82s
config 237=[ 2.25 12.75] log(rel.dens)=-0.68, [1] accept, compute, 10.77s
config 238=[ 3.00 12.75] log(rel.dens)=-1.00, [0] accept, compute, 10.73s
config 239=[ 3.75 12.75] log(rel.dens)=-1.76, [3] accept, compute, 10.81s
config 240=[ 0.00 13.50] log(rel.dens)=-3.01, [2] accept, compute, 10.63s
config 241=[ -0.75 13.50] log(rel.dens)=-4.97, [0] accept, compute, 10.56s
config 242=[ 0.75 13.50] log(rel.dens)=-1.65, [1] accept, compute, 10.64s
config 243=[ 1.50 13.50] log(rel.dens)=-0.85, [3] accept, compute, 10.58s
config 244=[ 2.25 13.50] log(rel.dens)=-0.57, [2] accept, compute, 10.62s
config 245=[ 3.75 13.50] log(rel.dens)=-1.45, [1] accept, compute, 10.85s
config 246=[ 3.00 13.50] log(rel.dens)=-0.79, [0] accept, compute, 10.89s
config 247=[ 0.00 14.25] log(rel.dens)=-3.28, [3] accept, compute, 10.87s
config 248=[ -0.75 14.25] log(rel.dens)=-5.37, [2] accept, compute, 11.30s
config 249=[ 0.75 14.25] log(rel.dens)=-1.80, [1] accept, compute, 11.18s
config 250=[ 1.50 14.25] log(rel.dens)=-0.88, [0] accept, compute, 11.24s
config 251=[ 2.25 14.25] log(rel.dens)=-0.49, [3] accept, compute, 11.36s
config 252=[ 3.00 14.25] log(rel.dens)=-0.60, [2] accept, compute, 11.10s
config 253=[ 3.75 14.25] log(rel.dens)=-1.16, [1] accept, compute, 10.87s
config 254=[ 0.00 15.00] log(rel.dens)=-3.60, [0] accept, compute, 11.04s
config 255=[ 0.75 15.00] log(rel.dens)=-1.98, [3] accept, compute, 11.12s
config 256=[ -0.75 15.00] log(rel.dens)=-5.83, [2] accept, compute, 10.97s
config 257=[ 1.50 15.00] log(rel.dens)=-0.94, [1] accept, compute, 11.09s
config 258=[ 2.25 15.00] log(rel.dens)=-0.43, [0] accept, compute, 11.16s
config 259=[ -0.75 15.75] log(rel.dens)=-6.32, reject, 0.33s
config 260=[ 3.00 15.00] log(rel.dens)=-0.43, [3] accept, compute, 10.85s
config 261=[ 3.75 15.00] log(rel.dens)=-0.92, [2] accept, compute, 11.23s
config 262=[ 0.00 15.75] log(rel.dens)=-3.95, [1] accept, compute, 11.40s
config 263=[ 0.75 15.75] log(rel.dens)=-2.21, [0] accept, compute, 11.27s
config 264=[ 1.50 15.75] log(rel.dens)=-1.04, [3] accept, compute, 11.35s
config 265=[ 2.25 15.75] log(rel.dens)=-0.42, [2] accept, compute, 10.28s
config 266=[ 3.00 15.75] log(rel.dens)=-0.31, [1] accept, compute, 10.25s
config 267=[ 3.75 15.75] log(rel.dens)=-0.68, [0] accept, compute, 10.39s
config 268=[ 0.00 16.50] log(rel.dens)=-4.36, [3] accept, compute, 10.18s
config 269=[ 0.75 16.50] log(rel.dens)=-2.48, [2] accept, compute, 10.50s
config 270=[ 1.50 16.50] log(rel.dens)=-1.19, [1] accept, compute, 10.34s
config 271=[ 2.25 16.50] log(rel.dens)=-0.44, [0] accept, compute, 10.67s
config 272=[ 3.00 16.50] log(rel.dens)=-0.23, [3] accept, compute, 10.64s
config 273=[ 3.75 16.50] log(rel.dens)=-0.49, [2] accept, compute, 10.91s
config 274=[ 0.00 17.25] log(rel.dens)=-4.83, [1] accept, compute, 10.69s
config 275=[ 0.75 17.25] log(rel.dens)=-2.81, [0] accept, compute, 10.58s
config 276=[ 1.50 17.25] log(rel.dens)=-1.39, [3] accept, compute, 10.62s
config 277=[ 2.25 17.25] log(rel.dens)=-0.53, [2] accept, compute, 10.71s
config 278=[ 3.00 17.25] log(rel.dens)=-0.20, [1] accept, compute, 10.74s
config 279=[ 3.75 17.25] log(rel.dens)=-0.36, [0] accept, compute, 10.77s
config 280=[ 0.00 18.00] log(rel.dens)=-5.37, [3] accept, compute, 11.15s
config 281=[ 0.75 18.00] log(rel.dens)=-3.21, [2] accept, compute, 10.66s
config 282=[ 1.50 18.00] log(rel.dens)=-1.66, [1] accept, compute, 10.52s
config 283=[ 2.25 18.00] log(rel.dens)=-0.67, [0] accept, compute, 10.47s
config 284=[ 3.00 18.00] log(rel.dens)=-0.23, [3] accept, compute, 10.39s
config 285=[ 3.75 18.00] log(rel.dens)=-0.28, [2] accept, compute, 10.64s
config 286=[ 0.00 18.75] log(rel.dens)=-5.99, [1] accept, compute, 10.68s
config 287=[ 0.75 18.75] log(rel.dens)=-3.69, [0] accept, compute, 10.57s
config 288=[ 1.50 18.75] log(rel.dens)=-2.01, [3] accept, compute, 10.56s
config 289=[ 0.00 19.50] log(rel.dens)=-6.70, reject, 0.34s
config 290=[ 2.25 18.75] log(rel.dens)=-0.90, [2] accept, compute, 9.45s
config 291=[ 3.00 18.75] log(rel.dens)=-0.33, [1] accept, compute, 9.04s
config 292=[ 3.75 18.75] log(rel.dens)=-0.28, [0] accept, compute, 8.62s
Combine the densities with relative weights:
config 0/279=[ 0.00 0.00] weight = 0.951 adjusted weight = 0.014 neff = 524.59
config 1/279=[ 0.00 -0.75] weight = 0.952 adjusted weight = 0.014 neff = 522.43
config 2/279=[ -0.75 0.00] weight = 0.823 adjusted weight = 0.012 neff = 550.80
config 3/279=[ 0.75 0.00] weight = 0.696 adjusted weight = 0.010 neff = 499.17
config 4/279=[ 0.00 0.75] weight = 1.000 adjusted weight = 0.015 neff = 527.35
config 5/279=[ -0.75 -0.75] weight = 0.782 adjusted weight = 0.012 neff = 548.44
config 6/279=[ -0.75 0.75] weight = 0.667 adjusted weight = 0.010 neff = 554.18
config 7/279=[ 0.75 -0.75] weight = 0.750 adjusted weight = 0.011 neff = 497.22
config 8/279=[ 0.75 0.75] weight = 0.788 adjusted weight = 0.012 neff = 501.56
config 9/279=[ 0.00 -1.50] weight = 0.734 adjusted weight = 0.011 neff = 521.48
config 10/279=[ -1.50 0.00] weight = 0.388 adjusted weight = 0.006 neff = 577.93
config 11/279=[ 1.50 0.00] weight = 0.427 adjusted weight = 0.006 neff = 474.24
config 12/279=[ 0.00 1.50] weight = 0.847 adjusted weight = 0.013 neff = 531.01
config 13/279=[ -0.75 1.50] weight = 0.689 adjusted weight = 0.010 neff = 557.76
config 14/279=[ 0.75 -1.50] weight = 0.638 adjusted weight = 0.010 neff = 496.49
config 15/279=[ -0.75 -1.50] weight = 0.679 adjusted weight = 0.010 neff = 546.98
config 16/279=[ 0.75 1.50] weight = 0.761 adjusted weight = 0.011 neff = 504.80
config 17/279=[ -1.50 -0.75] weight = 0.372 adjusted weight = 0.006 neff = 575.30
config 18/279=[ 1.50 -0.75] weight = 0.388 adjusted weight = 0.006 neff = 472.87
config 19/279=[ -1.50 0.75] weight = 0.376 adjusted weight = 0.006 neff = 581.27
config 20/279=[ 1.50 0.75] weight = 0.432 adjusted weight = 0.006 neff = 476.50
config 21/279=[ -1.50 -1.50] weight = 0.366 adjusted weight = 0.005 neff = 573.35
config 22/279=[ 1.50 1.50] weight = 0.430 adjusted weight = 0.006 neff = 479.46
config 23/279=[ 1.50 -1.50] weight = 0.350 adjusted weight = 0.005 neff = 472.43
config 24/279=[ -1.50 1.50] weight = 0.310 adjusted weight = 0.005 neff = 585.34
config 25/279=[ 2.25 0.00] weight = 0.156 adjusted weight = 0.002 neff = 450.38
config 26/279=[ 0.00 -2.25] weight = 0.602 adjusted weight = 0.009 neff = 521.41
config 27/279=[ -2.25 0.00] weight = 0.128 adjusted weight = 0.002 neff = 605.51
config 28/279=[ 2.25 0.75] weight = 0.182 adjusted weight = 0.003 neff = 452.13
config 29/279=[ 0.00 2.25] weight = 0.831 adjusted weight = 0.012 neff = 534.94
config 30/279=[ -0.75 -2.25] weight = 0.474 adjusted weight = 0.007 neff = 546.75
config 31/279=[ 0.75 -2.25] weight = 0.481 adjusted weight = 0.007 neff = 496.95
config 32/279=[ 2.25 -0.75] weight = 0.160 adjusted weight = 0.002 neff = 449.18
config 33/279=[ -2.25 -0.75] weight = 0.134 adjusted weight = 0.002 neff = 602.51
config 34/279=[ -0.75 2.25] weight = 0.574 adjusted weight = 0.009 neff = 562.09
config 35/279=[ -2.25 0.75] weight = 0.108 adjusted weight = 0.002 neff = 609.23
config 36/279=[ -2.25 -1.50] weight = 0.125 adjusted weight = 0.002 neff = 600.37
config 37/279=[ 0.75 2.25] weight = 0.760 adjusted weight = 0.011 neff = 508.51
config 38/279=[ 2.25 -1.50] weight = 0.138 adjusted weight = 0.002 neff = 449.20
config 39/279=[ -1.50 -2.25] weight = 0.281 adjusted weight = 0.004 neff = 572.60
config 40/279=[ 2.25 1.50] weight = 0.185 adjusted weight = 0.003 neff = 454.77
config 41/279=[ -1.50 2.25] weight = 0.241 adjusted weight = 0.004 neff = 589.92
config 42/279=[ 1.50 -2.25] weight = 0.254 adjusted weight = 0.004 neff = 473.39
config 43/279=[ -2.25 1.50] weight = 0.084 adjusted weight = 0.001 neff = 613.54
config 44/279=[ 1.50 2.25] weight = 0.417 adjusted weight = 0.006 neff = 482.98
config 45/279=[ 0.00 3.00] weight = 0.709 adjusted weight = 0.011 neff = 539.48
config 46/279=[ 3.00 0.00] weight = 0.049 adjusted weight = 0.001 neff = 427.12
config 47/279=[ 0.00 -3.00] weight = 0.383 adjusted weight = 0.006 neff = 522.85
config 48/279=[ -3.00 0.00] weight = 0.023 adjusted weight = 0.000 neff = 633.78
config 49/279=[ -0.75 -3.00] weight = 0.320 adjusted weight = 0.005 neff = 547.64
config 50/279=[ -3.00 0.75] weight = 0.017 adjusted weight = 0.000 neff = 637.84
config 51/279=[ 3.00 0.75] weight = 0.051 adjusted weight = 0.001 neff = 428.71
config 52/279=[ -0.75 3.00] weight = 0.457 adjusted weight = 0.007 neff = 566.87
config 53/279=[ 0.75 -3.00] weight = 0.318 adjusted weight = 0.005 neff = 498.82
config 54/279=[ 3.00 -0.75] weight = 0.044 adjusted weight = 0.001 neff = 426.50
config 55/279=[ 0.75 3.00] weight = 0.683 adjusted weight = 0.010 neff = 512.81
config 56/279=[ -3.00 -0.75] weight = 0.027 adjusted weight = 0.000 neff = 630.45
config 57/279=[ 2.25 2.25] weight = 0.186 adjusted weight = 0.003 neff = 458.01
config 58/279=[ 2.25 -2.25] weight = 0.101 adjusted weight = 0.001 neff = 450.61
config 59/279=[ -2.25 -2.25] weight = 0.098 adjusted weight = 0.001 neff = 599.24
config 60/279=[ -2.25 2.25] weight = 0.051 adjusted weight = 0.001 neff = 618.57
config 61/279=[ -1.50 3.00] weight = 0.176 adjusted weight = 0.003 neff = 594.94
config 62/279=[ -3.00 -1.50] weight = 0.025 adjusted weight = 0.000 neff = 628.03
config 63/279=[ 1.50 -3.00] weight = 0.186 adjusted weight = 0.003 neff = 475.60
config 64/279=[ 1.50 3.00] weight = 0.431 adjusted weight = 0.006 neff = 486.89
config 65/279=[ 3.00 1.50] weight = 0.051 adjusted weight = 0.001 neff = 431.09
config 66/279=[ -3.00 1.50] weight = 0.011 adjusted weight = 0.000 neff = 642.57
config 67/279=[ -1.50 -3.00] weight = 0.176 adjusted weight = 0.003 neff = 573.17
config 68/279=[ 3.00 -1.50] weight = 0.041 adjusted weight = 0.001 neff = 426.82
config 69/279=[ -2.25 -3.00] weight = 0.060 adjusted weight = 0.001 neff = 599.42
config 70/279=[ 2.25 -3.00] weight = 0.078 adjusted weight = 0.001 neff = 453.25
config 71/279=[ 0.00 -3.75] weight = 0.201 adjusted weight = 0.003 neff = 525.90
config 72/279=[ -3.00 2.25] weight = 0.008 adjusted weight = 0.000 neff = 647.46
config 73/279=[ 3.00 -2.25] weight = 0.034 adjusted weight = 0.001 neff = 428.50
config 74/279=[ 3.00 2.25] weight = 0.054 adjusted weight = 0.001 neff = 434.02
config 75/279=[ -3.00 -2.25] weight = 0.021 adjusted weight = 0.000 neff = 626.50
config 76/279=[ 2.25 3.00] weight = 0.178 adjusted weight = 0.003 neff = 461.82
config 77/279=[ 0.00 3.75] weight = 0.584 adjusted weight = 0.009 neff = 544.41
config 78/279=[ -2.25 3.00] weight = 0.039 adjusted weight = 0.001 neff = 623.63
config 79/279=[ 3.75 0.00] weight = 0.010 adjusted weight = 0.000 neff = 404.99
config 80/279=[ -0.75 3.75] weight = 0.324 adjusted weight = 0.005 neff = 572.14
config 81/279=[ 0.75 -3.75] weight = 0.171 adjusted weight = 0.003 neff = 502.39
config 82/279=[ 3.75 0.75] weight = 0.010 adjusted weight = 0.000 neff = 406.26
config 83/279=[ 3.75 -0.75] weight = 0.010 adjusted weight = 0.000 neff = 404.58
config 84/279=[ 0.75 3.75] weight = 0.612 adjusted weight = 0.009 neff = 517.48
config 85/279=[ -0.75 -3.75] weight = 0.162 adjusted weight = 0.002 neff = 550.21
config 86/279=[ -1.50 3.75] weight = 0.119 adjusted weight = 0.002 neff = 600.35
config 87/279=[ 3.75 1.50] weight = 0.010 adjusted weight = 0.000 neff = 408.36
config 88/279=[ -1.50 -3.75] weight = 0.087 adjusted weight = 0.001 neff = 575.25
config 89/279=[ 1.50 -3.75] weight = 0.109 adjusted weight = 0.002 neff = 479.62
config 90/279=[ 1.50 3.75] weight = 0.405 adjusted weight = 0.006 neff = 491.33
config 91/279=[ 3.75 -1.50] weight = 0.009 adjusted weight = 0.000 neff = 405.31
config 92/279=[ -3.00 -3.00] weight = 0.014 adjusted weight = 0.000 neff = 626.21
config 93/279=[ 3.00 -3.00] weight = 0.027 adjusted weight = 0.000 neff = 431.65
config 94/279=[ 3.00 3.00] weight = 0.054 adjusted weight = 0.001 neff = 437.51
config 95/279=[ -3.00 3.00] weight = 0.004 adjusted weight = 0.000 neff = 652.95
config 96/279=[ 2.25 -3.75] weight = 0.050 adjusted weight = 0.001 neff = 457.72
config 97/279=[ 2.25 3.75] weight = 0.180 adjusted weight = 0.003 neff = 465.97
config 98/279=[ -2.25 -3.75] weight = 0.030 adjusted weight = 0.000 neff = 601.03
config 99/279=[ 3.75 -2.25] weight = 0.008 adjusted weight = 0.000 neff = 407.50
config 100/279=[ 3.75 2.25] weight = 0.011 adjusted weight = 0.000 neff = 410.91
config 101/279=[ -2.25 3.75] weight = 0.025 adjusted weight = 0.000 neff = 629.14
config 102/279=[ 0.00 4.50] weight = 0.485 adjusted weight = 0.007 neff = 549.64
config 103/279=[ 0.00 -4.50] weight = 0.080 adjusted weight = 0.001 neff = 530.89
config 104/279=[ 0.75 -4.50] weight = 0.075 adjusted weight = 0.001 neff = 507.88
config 105/279=[ -0.75 4.50] weight = 0.266 adjusted weight = 0.004 neff = 577.47
config 106/279=[ 0.75 4.50] weight = 0.532 adjusted weight = 0.008 neff = 522.52
config 107/279=[ -0.75 -4.50] weight = 0.059 adjusted weight = 0.001 neff = 554.69
config 108/279=[ 1.50 4.50] weight = 0.356 adjusted weight = 0.005 neff = 496.21
config 109/279=[ -1.50 4.50] weight = 0.086 adjusted weight = 0.001 neff = 605.94
config 110/279=[ -1.50 -4.50] weight = 0.032 adjusted weight = 0.000 neff = 579.15
config 111/279=[ 1.50 -4.50] weight = 0.051 adjusted weight = 0.001 neff = 485.66
config 112/279=[ -3.00 -3.75] weight = 0.007 adjusted weight = 0.000 neff = 627.34
config 113/279=[ 3.75 -3.00] weight = 0.007 adjusted weight = 0.000 neff = 410.96
config 114/279=[ 3.00 3.75] weight = 0.054 adjusted weight = 0.001 neff = 441.48
config 115/279=[ -3.00 3.75] weight = 0.003 adjusted weight = 0.000 neff = 658.54
config 116/279=[ 3.00 -3.75] weight = 0.017 adjusted weight = 0.000 neff = 436.72
config 117/279=[ 3.75 3.00] weight = 0.011 adjusted weight = 0.000 neff = 414.21
config 118/279=[ 2.25 -4.50] weight = 0.026 adjusted weight = 0.000 neff = 464.26
config 119/279=[ -2.25 -4.50] weight = 0.011 adjusted weight = 0.000 neff = 604.33
config 120/279=[ -2.25 4.50] weight = 0.015 adjusted weight = 0.000 neff = 635.05
config 121/279=[ 2.25 4.50] weight = 0.179 adjusted weight = 0.003 neff = 470.51
config 122/279=[ 0.00 5.25] weight = 0.392 adjusted weight = 0.006 neff = 555.16
config 123/279=[ 0.00 -5.25] weight = 0.023 adjusted weight = 0.000 neff = 538.10
config 124/279=[ -0.75 -5.25] weight = 0.016 adjusted weight = 0.000 neff = 561.28
config 125/279=[ 3.75 3.75] weight = 0.012 adjusted weight = 0.000 neff = 417.80
config 126/279=[ -0.75 5.25] weight = 0.184 adjusted weight = 0.003 neff = 583.28
config 127/279=[ 0.75 -5.25] weight = 0.023 adjusted weight = 0.000 neff = 515.76
config 128/279=[ 0.75 5.25] weight = 0.475 adjusted weight = 0.007 neff = 527.80
config 129/279=[ 3.75 -3.75] weight = 0.005 adjusted weight = 0.000 neff = 416.38
config 130/279=[ 3.00 -4.50] weight = 0.011 adjusted weight = 0.000 neff = 443.68
config 131/279=[ 3.00 4.50] weight = 0.054 adjusted weight = 0.001 neff = 445.82
config 132/279=[ 1.50 5.25] weight = 0.338 adjusted weight = 0.005 neff = 501.28
config 133/279=[ -1.50 5.25] weight = 0.054 adjusted weight = 0.001 neff = 611.91
config 134/279=[ -1.50 -5.25] weight = 0.008 adjusted weight = 0.000 neff = 585.17
config 135/279=[ 1.50 -5.25] weight = 0.018 adjusted weight = 0.000 neff = 494.08
config 136/279=[ 2.25 5.25] weight = 0.168 adjusted weight = 0.003 neff = 475.45
config 137/279=[ -2.25 5.25] weight = 0.009 adjusted weight = 0.000 neff = 641.11
config 138/279=[ 2.25 -5.25] weight = 0.010 adjusted weight = 0.000 neff = 473.24
config 139/279=[ 3.75 4.50] weight = 0.013 adjusted weight = 0.000 neff = 421.86
config 140/279=[ 3.75 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 423.95
config 141/279=[ 0.00 -6.00] weight = 0.004 adjusted weight = 0.000 neff = 547.98
config 142/279=[ 0.00 6.00] weight = 0.320 adjusted weight = 0.005 neff = 560.88
config 143/279=[ 3.00 5.25] weight = 0.056 adjusted weight = 0.001 neff = 450.47
config 144/279=[ 0.75 -6.00] weight = 0.005 adjusted weight = 0.000 neff = 526.19
config 145/279=[ -0.75 -6.00] weight = 0.003 adjusted weight = 0.000 neff = 570.51
config 146/279=[ 0.75 6.00] weight = 0.428 adjusted weight = 0.006 neff = 533.30
config 147/279=[ 3.00 -5.25] weight = 0.005 adjusted weight = 0.000 neff = 453.26
config 148/279=[ -0.75 6.00] weight = 0.148 adjusted weight = 0.002 neff = 589.08
config 149/279=[ 1.50 6.00] weight = 0.344 adjusted weight = 0.005 neff = 506.51
config 150/279=[ -1.50 6.00] weight = 0.037 adjusted weight = 0.001 neff = 617.96
config 151/279=[ 1.50 -6.00] weight = 0.004 adjusted weight = 0.000 neff = 505.21
config 152/279=[ 2.25 -6.00] weight = 0.003 adjusted weight = 0.000 neff = 485.07
config 153/279=[ -2.25 6.00] weight = 0.006 adjusted weight = 0.000 neff = 647.19
config 154/279=[ 2.25 6.00] weight = 0.183 adjusted weight = 0.003 neff = 480.45
config 155/279=[ 3.75 5.25] weight = 0.014 adjusted weight = 0.000 neff = 426.21
config 156/279=[ 3.00 6.00] weight = 0.065 adjusted weight = 0.001 neff = 455.23
config 157/279=[ 0.00 6.75] weight = 0.266 adjusted weight = 0.004 neff = 566.77
config 158/279=[ -0.75 6.75] weight = 0.113 adjusted weight = 0.002 neff = 595.12
config 159/279=[ 0.75 6.75] weight = 0.386 adjusted weight = 0.006 neff = 539.01
config 160/279=[ -1.50 6.75] weight = 0.027 adjusted weight = 0.000 neff = 624.11
config 161/279=[ 1.50 6.75] weight = 0.343 adjusted weight = 0.005 neff = 511.99
config 162/279=[ 3.75 6.00] weight = 0.016 adjusted weight = 0.000 neff = 430.84
config 163/279=[ -2.25 6.75] weight = 0.004 adjusted weight = 0.000 neff = 653.55
config 164/279=[ 2.25 6.75] weight = 0.192 adjusted weight = 0.003 neff = 485.74
config 165/279=[ 3.00 6.75] weight = 0.073 adjusted weight = 0.001 neff = 460.27
config 166/279=[ 0.00 7.50] weight = 0.224 adjusted weight = 0.003 neff = 572.79
config 167/279=[ -0.75 7.50] weight = 0.086 adjusted weight = 0.001 neff = 601.32
config 168/279=[ 0.75 7.50] weight = 0.356 adjusted weight = 0.005 neff = 544.87
config 169/279=[ 1.50 7.50] weight = 0.342 adjusted weight = 0.005 neff = 517.65
config 170/279=[ -1.50 7.50] weight = 0.018 adjusted weight = 0.000 neff = 630.42
config 171/279=[ 3.75 6.75] weight = 0.019 adjusted weight = 0.000 neff = 435.69
config 172/279=[ 2.25 7.50] weight = 0.205 adjusted weight = 0.003 neff = 491.22
config 173/279=[ 3.00 7.50] weight = 0.084 adjusted weight = 0.001 neff = 465.52
config 174/279=[ 0.00 8.25] weight = 0.191 adjusted weight = 0.003 neff = 578.94
config 175/279=[ 0.75 8.25] weight = 0.329 adjusted weight = 0.005 neff = 550.87
config 176/279=[ -0.75 8.25] weight = 0.064 adjusted weight = 0.001 neff = 607.65
config 177/279=[ 3.75 7.50] weight = 0.023 adjusted weight = 0.000 neff = 440.70
config 178/279=[ 1.50 8.25] weight = 0.348 adjusted weight = 0.005 neff = 523.46
config 179/279=[ -1.50 8.25] weight = 0.012 adjusted weight = 0.000 neff = 636.88
config 180/279=[ 2.25 8.25] weight = 0.230 adjusted weight = 0.003 neff = 496.81
config 181/279=[ 3.00 8.25] weight = 0.091 adjusted weight = 0.001 neff = 471.06
config 182/279=[ 0.00 9.00] weight = 0.162 adjusted weight = 0.002 neff = 585.21
config 183/279=[ 0.75 9.00] weight = 0.310 adjusted weight = 0.005 neff = 556.97
config 184/279=[ -0.75 9.00] weight = 0.049 adjusted weight = 0.001 neff = 614.06
config 185/279=[ 3.75 8.25] weight = 0.028 adjusted weight = 0.000 neff = 445.97
config 186/279=[ -1.50 9.00] weight = 0.008 adjusted weight = 0.000 neff = 643.43
config 187/279=[ 1.50 9.00] weight = 0.331 adjusted weight = 0.005 neff = 529.51
config 188/279=[ 2.25 9.00] weight = 0.259 adjusted weight = 0.004 neff = 502.54
config 189/279=[ 3.00 9.00] weight = 0.111 adjusted weight = 0.002 neff = 476.60
config 190/279=[ 0.00 9.75] weight = 0.137 adjusted weight = 0.002 neff = 591.57
config 191/279=[ 3.75 9.00] weight = 0.038 adjusted weight = 0.001 neff = 451.21
config 192/279=[ -0.75 9.75] weight = 0.037 adjusted weight = 0.001 neff = 620.56
config 193/279=[ 0.75 9.75] weight = 0.293 adjusted weight = 0.004 neff = 563.17
config 194/279=[ -1.50 9.75] weight = 0.006 adjusted weight = 0.000 neff = 650.06
config 195/279=[ 1.50 9.75] weight = 0.374 adjusted weight = 0.006 neff = 535.42
config 196/279=[ 2.25 9.75] weight = 0.295 adjusted weight = 0.004 neff = 508.39
config 197/279=[ 3.00 9.75] weight = 0.150 adjusted weight = 0.002 neff = 482.11
config 198/279=[ 3.75 9.75] weight = 0.049 adjusted weight = 0.001 neff = 456.70
config 199/279=[ 0.00 10.50] weight = 0.115 adjusted weight = 0.002 neff = 598.00
config 200/279=[ -0.75 10.50] weight = 0.027 adjusted weight = 0.000 neff = 627.13
config 201/279=[ -1.50 10.50] weight = 0.003 adjusted weight = 0.000 neff = 656.82
config 202/279=[ 0.75 10.50] weight = 0.276 adjusted weight = 0.004 neff = 569.45
config 203/279=[ 1.50 10.50] weight = 0.392 adjusted weight = 0.006 neff = 541.54
config 204/279=[ 2.25 10.50] weight = 0.339 adjusted weight = 0.005 neff = 514.33
config 205/279=[ 3.00 10.50] weight = 0.185 adjusted weight = 0.003 neff = 487.89
config 206/279=[ 3.75 10.50] weight = 0.069 adjusted weight = 0.001 neff = 462.20
config 207/279=[ 0.00 11.25] weight = 0.096 adjusted weight = 0.001 neff = 604.50
config 208/279=[ -0.75 11.25] weight = 0.020 adjusted weight = 0.000 neff = 633.76
config 209/279=[ 0.75 11.25] weight = 0.258 adjusted weight = 0.004 neff = 575.81
config 210/279=[ 1.50 11.25] weight = 0.408 adjusted weight = 0.006 neff = 547.73
config 211/279=[ 2.25 11.25] weight = 0.388 adjusted weight = 0.006 neff = 520.36
config 212/279=[ 3.00 11.25] weight = 0.236 adjusted weight = 0.004 neff = 493.71
config 213/279=[ 0.00 12.00] weight = 0.079 adjusted weight = 0.001 neff = 611.06
config 214/279=[ 3.75 11.25] weight = 0.094 adjusted weight = 0.001 neff = 467.84
config 215/279=[ -0.75 12.00] weight = 0.015 adjusted weight = 0.000 neff = 640.45
config 216/279=[ 0.75 12.00] weight = 0.239 adjusted weight = 0.004 neff = 582.23
config 217/279=[ 2.25 12.00] weight = 0.450 adjusted weight = 0.007 neff = 526.43
config 218/279=[ 1.50 12.00] weight = 0.423 adjusted weight = 0.006 neff = 553.99
config 219/279=[ 3.00 12.00] weight = 0.297 adjusted weight = 0.004 neff = 499.62
config 220/279=[ 3.75 12.00] weight = 0.129 adjusted weight = 0.002 neff = 473.56
config 221/279=[ 0.75 12.75] weight = 0.189 adjusted weight = 0.003 neff = 588.90
config 222/279=[ 0.00 12.75] weight = 0.064 adjusted weight = 0.001 neff = 617.67
config 223/279=[ -0.75 12.75] weight = 0.010 adjusted weight = 0.000 neff = 647.19
config 224/279=[ 1.50 12.75] weight = 0.431 adjusted weight = 0.006 neff = 560.32
config 225/279=[ 2.25 12.75] weight = 0.511 adjusted weight = 0.008 neff = 532.59
config 226/279=[ 3.00 12.75] weight = 0.373 adjusted weight = 0.006 neff = 505.59
config 227/279=[ 3.75 12.75] weight = 0.174 adjusted weight = 0.003 neff = 479.37
config 228/279=[ 0.00 13.50] weight = 0.050 adjusted weight = 0.001 neff = 624.33
config 229/279=[ -0.75 13.50] weight = 0.007 adjusted weight = 0.000 neff = 653.95
config 230/279=[ 0.75 13.50] weight = 0.194 adjusted weight = 0.003 neff = 595.22
config 231/279=[ 1.50 13.50] weight = 0.431 adjusted weight = 0.006 neff = 566.70
config 232/279=[ 2.25 13.50] weight = 0.570 adjusted weight = 0.008 neff = 538.81
config 233/279=[ 3.75 13.50] weight = 0.239 adjusted weight = 0.004 neff = 485.21
config 234/279=[ 3.00 13.50] weight = 0.458 adjusted weight = 0.007 neff = 511.64
config 235/279=[ 0.00 14.25] weight = 0.038 adjusted weight = 0.001 neff = 631.02
config 236/279=[ -0.75 14.25] weight = 0.005 adjusted weight = 0.000 neff = 660.74
config 237/279=[ 0.75 14.25] weight = 0.167 adjusted weight = 0.002 neff = 601.80
config 238/279=[ 1.50 14.25] weight = 0.421 adjusted weight = 0.006 neff = 573.12
config 239/279=[ 2.25 14.25] weight = 0.620 adjusted weight = 0.009 neff = 545.08
config 240/279=[ 3.00 14.25] weight = 0.553 adjusted weight = 0.008 neff = 517.74
config 241/279=[ 3.75 14.25] weight = 0.317 adjusted weight = 0.005 neff = 491.13
config 242/279=[ 0.00 15.00] weight = 0.028 adjusted weight = 0.000 neff = 637.75
config 243/279=[ 0.75 15.00] weight = 0.140 adjusted weight = 0.002 neff = 608.40
config 244/279=[ -0.75 15.00] weight = 0.003 adjusted weight = 0.000 neff = 667.59
config 245/279=[ 1.50 15.00] weight = 0.396 adjusted weight = 0.006 neff = 579.60
config 246/279=[ 2.25 15.00] weight = 0.655 adjusted weight = 0.010 neff = 551.40
config 247/279=[ 3.00 15.00] weight = 0.655 adjusted weight = 0.010 neff = 523.88
config 248/279=[ 3.75 15.00] weight = 0.403 adjusted weight = 0.006 neff = 497.13
config 249/279=[ 0.00 15.75] weight = 0.019 adjusted weight = 0.000 neff = 644.51
config 250/279=[ 0.75 15.75] weight = 0.111 adjusted weight = 0.002 neff = 615.05
config 251/279=[ 1.50 15.75] weight = 0.358 adjusted weight = 0.005 neff = 586.11
config 252/279=[ 2.25 15.75] weight = 0.667 adjusted weight = 0.010 neff = 557.77
config 253/279=[ 3.00 15.75] weight = 0.741 adjusted weight = 0.011 neff = 530.09
config 254/279=[ 3.75 15.75] weight = 0.514 adjusted weight = 0.008 neff = 503.13
config 255/279=[ 0.00 16.50] weight = 0.013 adjusted weight = 0.000 neff = 651.31
config 256/279=[ 0.75 16.50] weight = 0.085 adjusted weight = 0.001 neff = 621.73
config 257/279=[ 1.50 16.50] weight = 0.309 adjusted weight = 0.005 neff = 592.66
config 258/279=[ 2.25 16.50] weight = 0.649 adjusted weight = 0.010 neff = 564.18
config 259/279=[ 3.00 16.50] weight = 0.805 adjusted weight = 0.012 neff = 536.34
config 260/279=[ 3.75 16.50] weight = 0.619 adjusted weight = 0.009 neff = 509.21
config 261/279=[ 0.00 17.25] weight = 0.008 adjusted weight = 0.000 neff = 658.13
config 262/279=[ 0.75 17.25] weight = 0.061 adjusted weight = 0.001 neff = 628.45
config 263/279=[ 1.50 17.25] weight = 0.252 adjusted weight = 0.004 neff = 599.25
config 264/279=[ 2.25 17.25] weight = 0.597 adjusted weight = 0.009 neff = 570.63
config 265/279=[ 3.00 17.25] weight = 0.830 adjusted weight = 0.012 neff = 542.64
config 266/279=[ 3.75 17.25] weight = 0.708 adjusted weight = 0.011 neff = 515.34
config 267/279=[ 0.00 18.00] weight = 0.005 adjusted weight = 0.000 neff = 664.98
config 268/279=[ 0.75 18.00] weight = 0.041 adjusted weight = 0.001 neff = 635.19
config 269/279=[ 1.50 18.00] weight = 0.193 adjusted weight = 0.003 neff = 605.88
config 270/279=[ 2.25 18.00] weight = 0.516 adjusted weight = 0.008 neff = 577.11
config 271/279=[ 3.00 18.00] weight = 0.805 adjusted weight = 0.012 neff = 548.97
config 272/279=[ 3.75 18.00] weight = 0.764 adjusted weight = 0.011 neff = 521.51
config 273/279=[ 0.00 18.75] weight = 0.003 adjusted weight = 0.000 neff = 671.85
config 274/279=[ 0.75 18.75] weight = 0.025 adjusted weight = 0.000 neff = 641.97
config 275/279=[ 1.50 18.75] weight = 0.136 adjusted weight = 0.002 neff = 612.54
config 276/279=[ 2.25 18.75] weight = 0.413 adjusted weight = 0.006 neff = 583.64
config 277/279=[ 3.00 18.75] weight = 0.724 adjusted weight = 0.011 neff = 555.35
config 278/279=[ 3.75 18.75] weight = 0.767 adjusted weight = 0.011 neff = 527.72
Done.
Expected effective number of parameters: 532.796(38.528), eqv.#replicates: 5.713
DIC:
Mean of Deviance................. 3255.08
Deviance at Mean................. 2787.16
Effective number of parameters... 467.913
DIC.............................. 3722.99
Marginal likelihood: Integration -1619.914798 Gaussian-approx -1621.995104
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34056cb2e/Model.ini]
Preparations : 0.106 seconds
Approx inference: 931.717 seconds [0.1|0.0|1.5|84.3|14.0]%
Output : 0.841 seconds
---------------------------------
Total : 932.665 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d349c3e91d] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d343bbaf0]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36d6de4bb]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d343bbaf0]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 1, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 1, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 1, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3730bcf62] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34a5493d9]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3561839ef]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c5c65f0]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d35cfd94c0] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3c30f8f2] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d36327de1e] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d34e67b66d] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37af9d651] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d328659eea] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d327a4295e] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d3a97eea7] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/data.files/filee1d37cb51b5f] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fde28f07510
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1684.115591 fn= 1 theta= 4.000000 3.990000 range=[-2.002 4.470]
max.logdens= -1684.102894 fn= 2 theta= 3.990000 4.000000 range=[-2.002 4.469]
max.logdens= -1672.301724 fn= 5 theta= 3.212560 3.383608 range=[-2.027 4.620]
max.logdens= -1672.135142 fn= 6 theta= 3.202560 3.383608 range=[-2.027 4.620]
max.logdens= -1663.703348 fn= 11 theta= 2.858213 3.106232 range=[-2.042 4.696]
max.logdens= -1663.496972 fn= 13 theta= 2.848213 3.106232 range=[-2.042 4.697]
max.logdens= -1652.977908 fn= 16 theta= 2.521582 2.842724 range=[-2.059 4.773]
max.logdens= -1652.677842 fn= 17 theta= 2.511582 2.842724 range=[-2.059 4.774]
max.logdens= -1639.945646 fn= 21 theta= 2.201783 2.592392 range=[-2.078 4.851]
max.logdens= -1639.824894 fn= 22 theta= 2.201783 2.582392 range=[-2.078 4.853]
max.logdens= -1639.585660 fn= 24 theta= 2.191783 2.592392 range=[-2.078 4.853]
max.logdens= -1622.990725 fn= 26 theta= 1.863683 2.327734 range=[-2.101 4.945]
max.logdens= -1622.860627 fn= 27 theta= 1.863683 2.317734 range=[-2.102 4.946]
max.logdens= -1622.541735 fn= 28 theta= 1.853683 2.327734 range=[-2.101 4.947]
max.logdens= -1601.934506 fn= 31 theta= 1.506586 2.048205 range=[-2.130 5.061]
max.logdens= -1601.802507 fn= 32 theta= 1.506586 2.038205 range=[-2.131 5.061]
max.logdens= -1601.410449 fn= 33 theta= 1.496586 2.048205 range=[-2.130 5.063]
max.logdens= -1579.536772 fn= 36 theta= 1.155373 1.773283 range=[-2.162 5.190]
max.logdens= -1579.414790 fn= 37 theta= 1.155373 1.763283 range=[-2.163 5.190]
max.logdens= -1578.987971 fn= 38 theta= 1.145373 1.773283 range=[-2.162 5.193]
max.logdens= -1560.170146 fn= 41 theta= 0.841615 1.527679 range=[-2.195 5.302]
max.logdens= -1560.068746 fn= 42 theta= 0.841615 1.517679 range=[-2.196 5.302]
max.logdens= -1559.664694 fn= 43 theta= 0.831615 1.527679 range=[-2.196 5.305]
max.logdens= -1546.686856 fn= 46 theta= 0.588082 1.329219 range=[-2.226 5.381]
max.logdens= -1546.274158 fn= 48 theta= 0.578082 1.329219 range=[-2.227 5.383]
max.logdens= -1537.692182 fn= 51 theta= 0.364958 1.154562 range=[-2.259 5.438]
max.logdens= -1537.641240 fn= 52 theta= 0.364958 1.144562 range=[-2.261 5.438]
max.logdens= -1537.406838 fn= 54 theta= 0.354958 1.154562 range=[-2.260 5.441]
max.logdens= -1532.599370 fn= 56 theta= 0.152990 0.988638 range=[-2.297 5.485]
max.logdens= -1532.575568 fn= 57 theta= 0.152990 0.978638 range=[-2.299 5.485]
max.logdens= -1532.472868 fn= 58 theta= 0.142990 0.988638 range=[-2.298 5.488]
max.logdens= -1531.595638 fn= 61 theta= -0.048379 0.831010 range=[-2.341 5.528]
max.logdens= -1531.550994 fn= 64 theta= -0.038379 0.831010 range=[-2.340 5.525]
max.logdens= -1531.507664 fn= 66 theta= 0.002010 0.870453 range=[-2.329 5.517]
max.logdens= -1531.465840 fn= 67 theta= 0.012010 0.870453 range=[-2.328 5.514]
max.logdens= -1531.459855 fn= 69 theta= 0.002010 0.860453 range=[-2.331 5.516]
Iter=1 |grad|=0.386 |x-x.old|=3.59 |f-f.old|=153
max.logdens= -1531.457605 fn= 73 theta= 0.018751 0.828205 range=[-2.333 5.511]
max.logdens= -1531.456837 fn= 79 theta= 0.015694 0.833036 range=[-2.333 5.512]
max.logdens= -1531.456616 fn= 83 theta= 0.014176 0.835433 range=[-2.333 5.512]
max.logdens= -1531.456512 fn= 90 theta= 0.012994 0.837302 range=[-2.333 5.512]
Iter=2 |grad|=0.699 |x-x.old|=0.0158 |f-f.old|=0.0483
max.logdens= -1531.454860 fn= 150 theta= 0.014327 0.833557 range=[-2.333 5.512]
max.logdens= -1531.453754 fn= 156 theta= 0.014590 0.827995 range=[-2.334 5.512]
max.logdens= -1531.453049 fn= 160 theta= 0.014778 0.824044 range=[-2.334 5.511]
max.logdens= -1531.452497 fn= 167 theta= 0.014922 0.820990 range=[-2.335 5.511]
max.logdens= -1531.452217 fn= 170 theta= 0.015040 0.818507 range=[-2.335 5.511]
max.logdens= -1531.451849 fn= 177 theta= 0.015137 0.816465 range=[-2.335 5.511]
max.logdens= -1531.451602 fn= 182 theta= 0.015219 0.814727 range=[-2.336 5.511]
max.logdens= -1531.451324 fn= 186 theta= 0.015289 0.813261 range=[-2.336 5.511]
max.logdens= -1531.451265 fn= 192 theta= 0.015351 0.811948 range=[-2.336 5.510]
max.logdens= -1531.451100 fn= 195 theta= 0.015404 0.810821 range=[-2.336 5.510]
max.logdens= -1531.450981 fn= 201 theta= 0.015455 0.809751 range=[-2.336 5.510]
max.logdens= -1531.450838 fn= 207 theta= 0.015503 0.808734 range=[-2.337 5.510]
max.logdens= -1531.450804 fn= 210 theta= 0.015549 0.807769 range=[-2.337 5.510]
max.logdens= -1531.450713 fn= 216 theta= 0.015593 0.806851 range=[-2.337 5.510]
max.logdens= -1531.450524 fn= 220 theta= 0.015634 0.805979 range=[-2.337 5.510]
max.logdens= -1531.450421 fn= 230 theta= 0.015710 0.804364 range=[-2.337 5.510]
max.logdens= -1531.450241 fn= 237 theta= 0.015746 0.803617 range=[-2.337 5.510]
max.logdens= -1531.450227 fn= 246 theta= 0.015811 0.802233 range=[-2.337 5.510]
max.logdens= -1531.450159 fn= 251 theta= 0.015842 0.801592 range=[-2.338 5.510]
max.logdens= -1531.450054 fn= 256 theta= 0.015871 0.800983 range=[-2.338 5.510]
Iter=3 |grad|=0.391 |x-x.old|=0.0289 |f-f.old|=0.00818 Reached numerical limit!
Number of function evaluations = 273
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
109.485789 14.021844
14.021844 14.132478
Eigenvectors of the Hessian
0.989790 -0.142532
0.142532 0.989790
Eigenvalues of the Hessian
111.504964
12.113303
StDev/Correlation matrix (scaled inverse Hessian)
0.102289 -0.356465
0.284709
Compute corrected stdev for theta[0]: negative 1.147382 positive 1.154963
Compute corrected stdev for theta[1]: negative 1.750841 positive 2.040325
max.logdens= -1531.451193 fn= 287 theta= 0.015880 0.810790 range=[-2.336 5.510]
config 0=[ -0.75 0.00] log(rel.dens)=-0.43, [2] accept, compute, 10.59s
config 1=[ 0.00 0.00] log(rel.dens)=-0.00, [3] accept, compute, 10.60s
config 2=[ 0.00 -0.75] log(rel.dens)=-0.06, [1] accept, compute, 10.61s
config 3=[ 0.75 0.00] log(rel.dens)=-0.43, [0] accept, compute, 10.65s
config 4=[ -0.75 -0.75] log(rel.dens)=-0.32, [1] accept, compute, 10.41s
config 5=[ 0.00 0.75] log(rel.dens)=-0.18, [2] accept, compute, 10.49s
config 6=[ -0.75 0.75] log(rel.dens)=-0.45, [3] accept, compute, 10.48s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.32, [0] accept, compute, 10.45s
config 8=[ -1.50 0.00] log(rel.dens)=-0.93, [3] accept, compute, 10.64s
config 9=[ 1.50 0.00] log(rel.dens)=-0.97, [0] accept, compute, 10.70s
config 10=[ 0.75 0.75] log(rel.dens)=-0.30, [1] accept, compute, 10.82s
config 11=[ 0.00 -1.50] log(rel.dens)=-0.33, [2] accept, compute, 10.91s
config 12=[ 0.00 1.50] log(rel.dens)=-0.29, [3] accept, compute, 10.44s
config 13=[ 0.75 -1.50] log(rel.dens)=-0.50, [1] accept, compute, 10.39s
config 14=[ -0.75 1.50] log(rel.dens)=-0.59, [0] accept, compute, 10.45s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.61, [2] accept, compute, 10.72s
config 16=[ 0.75 1.50] log(rel.dens)=-0.53, [3] accept, compute, 10.33s
config 17=[ -1.50 -0.75] log(rel.dens)=-0.86, [1] accept, compute, 10.46s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.89, [0] accept, compute, 10.60s
config 19=[ -1.50 0.75] log(rel.dens)=-1.02, [2] accept, compute, 10.43s
config 20=[ 1.50 0.75] log(rel.dens)=-1.05, [3] accept, compute, 10.44s
config 21=[ -1.50 -1.50] log(rel.dens)=-1.19, [1] accept, compute, 10.42s
config 22=[ 1.50 1.50] log(rel.dens)=-1.05, [0] accept, compute, 10.62s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.04, [2] accept, compute, 10.54s
config 24=[ -1.50 1.50] log(rel.dens)=-1.39, [3] accept, compute, 10.39s
config 25=[ 0.00 -2.25] log(rel.dens)=-0.87, [1] accept, compute, 10.34s
config 26=[ 2.25 0.00] log(rel.dens)=-1.87, [0] accept, compute, 10.36s
config 27=[ -2.25 0.00] log(rel.dens)=-1.95, [2] accept, compute, 10.37s
config 28=[ 0.00 2.25] log(rel.dens)=-0.59, [3] accept, compute, 10.61s
config 29=[ 2.25 0.75] log(rel.dens)=-1.96, [1] accept, compute, 10.68s
config 30=[ -0.75 -2.25] log(rel.dens)=-1.14, [0] accept, compute, 10.88s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.96, [2] accept, compute, 10.76s
config 32=[ -2.25 -0.75] log(rel.dens)=-1.92, [3] accept, compute, 10.79s
config 33=[ 2.25 -0.75] log(rel.dens)=-1.96, [1] accept, compute, 10.74s
config 34=[ -0.75 2.25] log(rel.dens)=-0.99, [0] accept, compute, 10.80s
config 35=[ -2.25 0.75] log(rel.dens)=-2.22, [2] accept, compute, 10.82s
config 36=[ 0.75 2.25] log(rel.dens)=-0.68, [3] accept, compute, 10.66s
config 37=[ -2.25 -1.50] log(rel.dens)=-2.21, [1] accept, compute, 10.83s
config 38=[ 2.25 -1.50] log(rel.dens)=-1.90, [0] accept, compute, 10.90s
config 39=[ -1.50 -2.25] log(rel.dens)=-1.79, [2] accept, compute, 11.05s
config 40=[ 2.25 1.50] log(rel.dens)=-2.07, [3] accept, compute, 10.93s
config 41=[ -1.50 2.25] log(rel.dens)=-1.89, [1] accept, compute, 11.18s
config 42=[ 1.50 -2.25] log(rel.dens)=-1.52, [0] accept, compute, 10.91s
config 43=[ -2.25 1.50] log(rel.dens)=-2.68, [2] accept, compute, 10.71s
config 44=[ 1.50 2.25] log(rel.dens)=-1.34, [3] accept, compute, 10.66s
config 45=[ 0.00 3.00] log(rel.dens)=-0.97, [1] accept, compute, 10.82s
config 46=[ 0.00 -3.00] log(rel.dens)=-1.80, [2] accept, compute, 10.73s
config 47=[ 3.00 0.00] log(rel.dens)=-3.23, [0] accept, compute, 11.18s
config 48=[ -3.00 0.00] log(rel.dens)=-3.56, [3] accept, compute, 10.58s
config 49=[ -0.75 -3.00] log(rel.dens)=-2.17, [1] accept, compute, 10.58s
config 50=[ -3.00 0.75] log(rel.dens)=-3.92, [2] accept, compute, 10.70s
config 51=[ 3.00 0.75] log(rel.dens)=-3.38, [0] accept, compute, 10.57s
config 52=[ -0.75 3.00] log(rel.dens)=-1.50, [3] accept, compute, 10.83s
config 53=[ 0.75 -3.00] log(rel.dens)=-1.76, [1] accept, compute, 10.87s
config 54=[ 0.75 3.00] log(rel.dens)=-0.96, [2] accept, compute, 10.85s
config 55=[ 3.00 -0.75] log(rel.dens)=-3.24, [0] accept, compute, 10.85s
config 56=[ -3.00 -0.75] log(rel.dens)=-3.45, [3] accept, compute, 10.67s
config 57=[ 2.25 2.25] log(rel.dens)=-2.19, [1] accept, compute, 10.78s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.13, [2] accept, compute, 10.81s
config 59=[ -2.25 -2.25] log(rel.dens)=-2.88, [0] accept, compute, 10.79s
config 60=[ -2.25 2.25] log(rel.dens)=-3.32, [3] accept, compute, 10.61s
config 61=[ -1.50 3.00] log(rel.dens)=-2.55, [1] accept, compute, 10.63s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.71, [2] accept, compute, 10.67s
config 63=[ 1.50 -3.00] log(rel.dens)=-2.05, [0] accept, compute, 10.82s
config 64=[ 3.00 1.50] log(rel.dens)=-3.50, [3] accept, compute, 10.28s
config 65=[ 1.50 3.00] log(rel.dens)=-1.41, [1] accept, compute, 10.33s
config 66=[ -3.00 1.50] log(rel.dens)=-4.50, [2] accept, compute, 10.29s
config 67=[ -1.50 -3.00] log(rel.dens)=-2.88, [0] accept, compute, 10.28s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.06, [3] accept, compute, 10.48s
config 69=[ -2.25 -3.00] log(rel.dens)=-4.02, [1] accept, compute, 10.52s
config 70=[ 2.25 -3.00] log(rel.dens)=-2.66, [2] accept, compute, 10.58s
config 71=[ 0.00 -3.75] log(rel.dens)=-3.23, [0] accept, compute, 10.66s
config 72=[ -3.00 2.25] log(rel.dens)=-5.40, [3] accept, compute, 10.60s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.16, [1] accept, compute, 10.59s
config 74=[ 3.00 2.25] log(rel.dens)=-3.57, [2] accept, compute, 10.58s
config 75=[ -3.00 -2.25] log(rel.dens)=-4.33, [0] accept, compute, 10.60s
config 76=[ 2.25 3.00] log(rel.dens)=-2.33, [3] accept, compute, 10.72s
config 77=[ 0.00 3.75] log(rel.dens)=-1.46, [1] accept, compute, 10.73s
config 78=[ -2.25 3.00] log(rel.dens)=-4.17, [2] accept, compute, 10.69s
config 79=[ 3.75 0.00] log(rel.dens)=-4.96, [0] accept, compute, 10.67s
config 80=[ -3.75 0.00] log(rel.dens)=-5.71, [3] accept, compute, 10.18s
config 81=[ -0.75 3.75] log(rel.dens)=-2.20, [1] accept, compute, 10.27s
config 82=[ 0.75 -3.75] log(rel.dens)=-3.08, [2] accept, compute, 10.21s
config 83=[ 3.75 0.75] log(rel.dens)=-5.11, [0] accept, compute, 10.20s
config 84=[ -3.75 0.75] log(rel.dens)=-6.32, reject, 0.39s
config 85=[ 3.75 -0.75] log(rel.dens)=-4.79, [3] accept, compute, 10.86s
config 86=[ 0.75 3.75] log(rel.dens)=-1.28, [1] accept, compute, 10.93s
config 87=[ -3.75 -0.75] log(rel.dens)=-5.49, [2] accept, compute, 10.93s
config 88=[ -0.75 -3.75] log(rel.dens)=-3.74, [0] accept, compute, 10.86s
config 89=[ -1.50 3.75] log(rel.dens)=-3.39, [3] accept, compute, 10.19s
config 90=[ 3.75 1.50] log(rel.dens)=-5.23, [1] accept, compute, 10.14s
config 91=[ -1.50 -3.75] log(rel.dens)=-4.56, [2] accept, compute, 10.19s
config 92=[ 1.50 -3.75] log(rel.dens)=-3.16, [0] accept, compute, 10.26s
config 93=[ 1.50 3.75] log(rel.dens)=-1.63, [3] accept, compute, 10.60s
config 94=[ 3.75 -1.50] log(rel.dens)=-4.51, [1] accept, compute, 10.47s
config 95=[ -3.75 -1.50] log(rel.dens)=-5.64, [2] accept, compute, 10.50s
config 96=[ -3.00 3.00] log(rel.dens)=-6.25, reject, 0.34s
config 97=[ -3.00 -3.00] log(rel.dens)=-5.50, [0] accept, compute, 10.52s
config 98=[ 3.00 -3.00] log(rel.dens)=-3.48, [3] accept, compute, 10.70s
config 99=[ 3.00 3.00] log(rel.dens)=-3.63, [1] accept, compute, 10.81s
config 100=[ 2.25 -3.75] log(rel.dens)=-3.61, [2] accept, compute, 11.13s
config 101=[ 2.25 3.75] log(rel.dens)=-2.48, [0] accept, compute, 10.87s
config 102=[ -3.75 -2.25] log(rel.dens)=-6.34, reject, 0.40s
config 103=[ -2.25 -3.75] log(rel.dens)=-5.77, [3] accept, compute, 10.73s
config 104=[ 3.75 -2.25] log(rel.dens)=-4.43, [1] accept, compute, 10.41s
config 105=[ -4.50 0.00] log(rel.dens)=-8.29, reject, 0.45s
config 106=[ 3.75 2.25] log(rel.dens)=-5.33, [2] accept, compute, 10.26s
config 107=[ 4.50 0.00] log(rel.dens)=-6.86, reject, 0.39s
config 108=[ -2.25 3.75] log(rel.dens)=-5.06, [0] accept, compute, 10.26s
config 109=[ 0.00 4.50] log(rel.dens)=-2.00, [3] accept, compute, 10.49s
config 110=[ 0.00 -4.50] log(rel.dens)=-5.40, [1] accept, compute, 10.63s
config 111=[ -0.75 -4.50] log(rel.dens)=-6.09, reject, 0.25s
config 112=[ 0.75 -4.50] log(rel.dens)=-5.06, [2] accept, compute, 10.60s
config 113=[ -0.75 4.50] log(rel.dens)=-2.80, [0] accept, compute, 10.84s
config 114=[ 0.75 4.50] log(rel.dens)=-1.77, [3] accept, compute, 10.73s
config 115=[ -1.50 4.50] log(rel.dens)=-4.22, [1] accept, compute, 10.57s
config 116=[ -3.00 -3.75] log(rel.dens)=-7.34, reject, 0.31s
config 117=[ 1.50 4.50] log(rel.dens)=-1.93, [2] accept, compute, 10.79s
config 118=[ 1.50 -4.50] log(rel.dens)=-4.96, [0] accept, compute, 10.80s
config 119=[ 3.75 -3.00] log(rel.dens)=-4.57, [3] accept, compute, 10.38s
config 120=[ 3.00 3.75] log(rel.dens)=-3.77, [1] accept, compute, 10.70s
config 121=[ -2.25 4.50] log(rel.dens)=-6.18, reject, 0.36s
config 122=[ 3.75 3.00] log(rel.dens)=-5.34, [2] accept, compute, 10.54s
config 123=[ 3.00 -3.75] log(rel.dens)=-4.15, [0] accept, compute, 10.51s
config 124=[ 0.00 -5.25] log(rel.dens)=-8.44, reject, 0.39s
config 125=[ 2.25 -4.50] log(rel.dens)=-5.04, [3] accept, compute, 11.17s
config 126=[ 2.25 4.50] log(rel.dens)=-2.59, [1] accept, compute, 11.91s
config 127=[ 0.00 5.25] log(rel.dens)=-2.61, [2] accept, compute, 11.96s
config 128=[ 3.75 3.75] log(rel.dens)=-5.44, [0] accept, compute, 11.99s
config 129=[ -0.75 5.25] log(rel.dens)=-3.68, [3] accept, compute, 13.12s
config 130=[ 0.75 5.25] log(rel.dens)=-2.13, [1] accept, compute, 13.52s
config 131=[ 3.75 -3.75] log(rel.dens)=-5.07, [2] accept, compute, 13.36s
config 132=[ 3.00 -4.50] log(rel.dens)=-5.48, [0] accept, compute, 14.58s
config 133=[ 3.00 4.50] log(rel.dens)=-3.73, [3] accept, compute, 13.77s
config 134=[ 1.50 5.25] log(rel.dens)=-2.27, [1] accept, compute, 12.64s
config 135=[ -1.50 5.25] log(rel.dens)=-5.32, [2] accept, compute, 12.64s
config 136=[ 3.75 -4.50] log(rel.dens)=-6.06, reject, 0.39s
config 137=[ 2.25 5.25] log(rel.dens)=-2.78, [0] accept, compute, 11.48s
config 138=[ 3.75 4.50] log(rel.dens)=-5.35, [3] accept, compute, 10.72s
config 139=[ 0.00 6.00] log(rel.dens)=-3.28, [2] accept, compute, 10.66s
config 140=[ 3.00 5.25] log(rel.dens)=-3.81, [1] accept, compute, 10.77s
config 141=[ -1.50 6.00] log(rel.dens)=-6.29, reject, 0.39s
config 142=[ 0.75 6.00] log(rel.dens)=-2.63, [0] accept, compute, 10.73s
config 143=[ -0.75 6.00] log(rel.dens)=-4.52, [3] accept, compute, 10.65s
config 144=[ 1.50 6.00] log(rel.dens)=-2.52, [2] accept, compute, 10.79s
config 145=[ 2.25 6.00] log(rel.dens)=-2.93, [1] accept, compute, 10.71s
config 146=[ 3.75 5.25] log(rel.dens)=-5.22, [0] accept, compute, 10.80s
config 147=[ 3.00 6.00] log(rel.dens)=-3.81, [3] accept, compute, 11.00s
config 148=[ 0.00 6.75] log(rel.dens)=-4.04, [2] accept, compute, 11.07s
config 149=[ -0.75 6.75] log(rel.dens)=-5.46, [1] accept, compute, 10.95s
config 150=[ 0.75 6.75] log(rel.dens)=-3.21, [0] accept, compute, 10.96s
config 151=[ 1.50 6.75] log(rel.dens)=-2.91, [3] accept, compute, 10.92s
config 152=[ 3.75 6.00] log(rel.dens)=-5.15, [2] accept, compute, 10.82s
config 153=[ -0.75 7.50] log(rel.dens)=-6.54, reject, 0.58s
config 154=[ 2.25 6.75] log(rel.dens)=-3.14, [1] accept, compute, 11.52s
config 155=[ 3.00 6.75] log(rel.dens)=-3.86, [0] accept, compute, 11.60s
config 156=[ 0.00 7.50] log(rel.dens)=-4.88, [3] accept, compute, 11.73s
config 157=[ 1.50 7.50] log(rel.dens)=-3.53, [1] accept, compute, 10.87s
config 158=[ 0.75 7.50] log(rel.dens)=-3.83, [2] accept, compute, 11.74s
config 159=[ 0.00 8.25] log(rel.dens)=-6.00, reject, 0.26s
config 160=[ 3.75 6.75] log(rel.dens)=-5.14, [0] accept, compute, 11.09s
config 161=[ 2.25 7.50] log(rel.dens)=-3.38, [3] accept, compute, 9.06s
config 162=[ 3.00 7.50] log(rel.dens)=-3.94, [1] accept, compute, 7.89s
config 163=[ 3.75 7.50] log(rel.dens)=-5.00, [2] accept, compute, 7.73s
Combine the densities with relative weights:
config 0/151=[ -0.75 0.00] weight = 0.649 adjusted weight = 0.561 neff = 623.98
config 1/151=[ 0.00 0.00] weight = 1.000 adjusted weight = 0.853 neff = 600.66
config 2/151=[ 0.00 -0.75] weight = 0.939 adjusted weight = 0.812 neff = 600.08
config 3/151=[ 0.75 0.00] weight = 0.653 adjusted weight = 0.565 neff = 578.38
config 4/151=[ -0.75 -0.75] weight = 0.724 adjusted weight = 0.634 neff = 622.62
config 5/151=[ 0.00 0.75] weight = 0.836 adjusted weight = 0.723 neff = 603.21
config 6/151=[ -0.75 0.75] weight = 0.635 adjusted weight = 0.556 neff = 626.76
config 7/151=[ 0.75 -0.75] weight = 0.727 adjusted weight = 0.637 neff = 578.16
config 8/151=[ -1.50 0.00] weight = 0.395 adjusted weight = 0.355 neff = 647.18
config 9/151=[ 1.50 0.00] weight = 0.381 adjusted weight = 0.342 neff = 556.21
config 10/151=[ 0.75 0.75] weight = 0.740 adjusted weight = 0.648 neff = 580.03
config 11/151=[ 0.00 -1.50] weight = 0.721 adjusted weight = 0.647 neff = 601.66
config 12/151=[ 0.00 1.50] weight = 0.748 adjusted weight = 0.672 neff = 607.08
config 13/151=[ 0.75 -1.50] weight = 0.606 adjusted weight = 0.551 neff = 580.31
config 14/151=[ -0.75 1.50] weight = 0.552 adjusted weight = 0.502 neff = 631.02
config 15/151=[ -0.75 -1.50] weight = 0.543 adjusted weight = 0.494 neff = 623.57
config 16/151=[ 0.75 1.50] weight = 0.587 adjusted weight = 0.534 neff = 583.67
config 17/151=[ -1.50 -0.75] weight = 0.424 adjusted weight = 0.386 neff = 645.37
config 18/151=[ 1.50 -0.75] weight = 0.412 adjusted weight = 0.375 neff = 556.64
config 19/151=[ -1.50 0.75] weight = 0.361 adjusted weight = 0.328 neff = 650.45
config 20/151=[ 1.50 0.75] weight = 0.349 adjusted weight = 0.317 neff = 557.62
config 21/151=[ -1.50 -1.50] weight = 0.304 adjusted weight = 0.288 neff = 645.77
config 22/151=[ 1.50 1.50] weight = 0.348 adjusted weight = 0.329 neff = 560.50
config 23/151=[ 1.50 -1.50] weight = 0.355 adjusted weight = 0.335 neff = 559.47
config 24/151=[ -1.50 1.50] weight = 0.250 adjusted weight = 0.236 neff = 655.34
config 25/151=[ 0.00 -2.25] weight = 0.419 adjusted weight = 0.401 neff = 605.72
config 26/151=[ 2.25 0.00] weight = 0.153 adjusted weight = 0.147 neff = 534.53
config 27/151=[ -2.25 0.00] weight = 0.142 adjusted weight = 0.136 neff = 670.81
config 28/151=[ 0.00 2.25] weight = 0.554 adjusted weight = 0.530 neff = 612.41
config 29/151=[ 2.25 0.75] weight = 0.140 adjusted weight = 0.136 neff = 535.39
config 30/151=[ -0.75 -2.25] weight = 0.318 adjusted weight = 0.309 neff = 626.86
config 31/151=[ 0.75 -2.25] weight = 0.381 adjusted weight = 0.369 neff = 585.07
config 32/151=[ -2.25 -0.75] weight = 0.147 adjusted weight = 0.142 neff = 668.59
config 33/151=[ 2.25 -0.75] weight = 0.140 adjusted weight = 0.136 neff = 535.87
config 34/151=[ -0.75 2.25] weight = 0.371 adjusted weight = 0.359 neff = 636.76
config 35/151=[ -2.25 0.75] weight = 0.109 adjusted weight = 0.105 neff = 674.69
config 36/151=[ 0.75 2.25] weight = 0.509 adjusted weight = 0.493 neff = 588.47
config 37/151=[ -2.25 -1.50] weight = 0.110 adjusted weight = 0.110 neff = 668.37
config 38/151=[ 2.25 -1.50] weight = 0.149 adjusted weight = 0.150 neff = 539.16
config 39/151=[ -1.50 -2.25] weight = 0.167 adjusted weight = 0.168 neff = 648.41
config 40/151=[ 2.25 1.50] weight = 0.126 adjusted weight = 0.127 neff = 537.94
config 41/151=[ -1.50 2.25] weight = 0.151 adjusted weight = 0.152 neff = 661.46
config 42/151=[ 1.50 -2.25] weight = 0.219 adjusted weight = 0.220 neff = 565.09
config 43/151=[ -2.25 1.50] weight = 0.069 adjusted weight = 0.069 neff = 679.97
config 44/151=[ 1.50 2.25] weight = 0.263 adjusted weight = 0.265 neff = 565.15
config 45/151=[ 0.00 3.00] weight = 0.378 adjusted weight = 0.394 neff = 618.88
config 46/151=[ 0.00 -3.00] weight = 0.165 adjusted weight = 0.172 neff = 612.64
config 47/151=[ 3.00 0.00] weight = 0.040 adjusted weight = 0.041 neff = 513.55
config 48/151=[ -3.00 0.00] weight = 0.028 adjusted weight = 0.030 neff = 694.89
config 49/151=[ -0.75 -3.00] weight = 0.114 adjusted weight = 0.121 neff = 633.02
config 50/151=[ -3.00 0.75] weight = 0.020 adjusted weight = 0.021 neff = 699.20
config 51/151=[ 3.00 0.75] weight = 0.034 adjusted weight = 0.036 neff = 513.91
config 52/151=[ -0.75 3.00] weight = 0.224 adjusted weight = 0.237 neff = 643.58
config 53/151=[ 0.75 -3.00] weight = 0.171 adjusted weight = 0.181 neff = 592.72
config 54/151=[ 0.75 3.00] weight = 0.384 adjusted weight = 0.405 neff = 594.56
config 55/151=[ 3.00 -0.75] weight = 0.039 adjusted weight = 0.041 neff = 515.47
config 56/151=[ -3.00 -0.75] weight = 0.032 adjusted weight = 0.033 neff = 692.15
config 57/151=[ 2.25 2.25] weight = 0.112 adjusted weight = 0.120 neff = 541.98
config 58/151=[ 2.25 -2.25] weight = 0.119 adjusted weight = 0.127 neff = 545.28
config 59/151=[ -2.25 -2.25] weight = 0.056 adjusted weight = 0.060 neff = 670.42
config 60/151=[ -2.25 2.25] weight = 0.036 adjusted weight = 0.039 neff = 686.45
config 61/151=[ -1.50 3.00] weight = 0.078 adjusted weight = 0.086 neff = 668.64
config 62/151=[ -3.00 -1.50] weight = 0.024 adjusted weight = 0.027 neff = 691.36
config 63/151=[ 1.50 -3.00] weight = 0.129 adjusted weight = 0.141 neff = 573.32
config 64/151=[ 3.00 1.50] weight = 0.030 adjusted weight = 0.033 neff = 515.97
config 65/151=[ 1.50 3.00] weight = 0.245 adjusted weight = 0.269 neff = 570.67
config 66/151=[ -3.00 1.50] weight = 0.011 adjusted weight = 0.012 neff = 704.86
config 67/151=[ -1.50 -3.00] weight = 0.056 adjusted weight = 0.061 neff = 653.82
config 68/151=[ 3.00 -1.50] weight = 0.047 adjusted weight = 0.051 neff = 519.37
config 69/151=[ -2.25 -3.00] weight = 0.018 adjusted weight = 0.021 neff = 675.08
config 70/151=[ 2.25 -3.00] weight = 0.070 adjusted weight = 0.081 neff = 554.48
config 71/151=[ 0.00 -3.75] weight = 0.039 adjusted weight = 0.046 neff = 622.76
config 72/151=[ -3.00 2.25] weight = 0.005 adjusted weight = 0.005 neff = 711.81
config 73/151=[ 3.00 -2.25] weight = 0.042 adjusted weight = 0.049 neff = 526.20
config 74/151=[ 3.00 2.25] weight = 0.028 adjusted weight = 0.033 neff = 519.51
config 75/151=[ -3.00 -2.25] weight = 0.013 adjusted weight = 0.015 neff = 692.70
config 76/151=[ 2.25 3.00] weight = 0.097 adjusted weight = 0.113 neff = 547.29
config 77/151=[ 0.00 3.75] weight = 0.232 adjusted weight = 0.269 neff = 626.33
config 78/151=[ -2.25 3.00] weight = 0.015 adjusted weight = 0.018 neff = 693.99
config 79/151=[ 3.75 0.00] weight = 0.007 adjusted weight = 0.008 neff = 493.24
config 80/151=[ -3.75 0.00] weight = 0.003 adjusted weight = 0.004 neff = 719.25
config 81/151=[ -0.75 3.75] weight = 0.111 adjusted weight = 0.130 neff = 651.46
config 82/151=[ 0.75 -3.75] weight = 0.046 adjusted weight = 0.054 neff = 603.72
config 83/151=[ 3.75 0.75] weight = 0.006 adjusted weight = 0.007 neff = 492.96
config 84/151=[ 3.75 -0.75] weight = 0.008 adjusted weight = 0.010 neff = 495.59
config 85/151=[ 0.75 3.75] weight = 0.277 adjusted weight = 0.325 neff = 601.63
config 86/151=[ -3.75 -0.75] weight = 0.004 adjusted weight = 0.005 neff = 716.00
config 87/151=[ -0.75 -3.75] weight = 0.024 adjusted weight = 0.028 neff = 642.33
config 88/151=[ -1.50 3.75] weight = 0.034 adjusted weight = 0.041 neff = 676.76
config 89/151=[ 3.75 1.50] weight = 0.005 adjusted weight = 0.007 neff = 494.49
config 90/151=[ -1.50 -3.75] weight = 0.010 adjusted weight = 0.013 neff = 662.31
config 91/151=[ 1.50 -3.75] weight = 0.043 adjusted weight = 0.052 neff = 585.07
config 92/151=[ 1.50 3.75] weight = 0.196 adjusted weight = 0.239 neff = 577.38
config 93/151=[ 3.75 -1.50] weight = 0.011 adjusted weight = 0.013 neff = 500.17
config 94/151=[ -3.75 -1.50] weight = 0.004 adjusted weight = 0.004 neff = 714.59
config 95/151=[ -3.00 -3.00] weight = 0.004 adjusted weight = 0.005 neff = 696.64
config 96/151=[ 3.00 -3.00] weight = 0.031 adjusted weight = 0.039 neff = 536.08
config 97/151=[ 3.00 3.00] weight = 0.027 adjusted weight = 0.034 neff = 524.35
config 98/151=[ 2.25 -3.75] weight = 0.027 adjusted weight = 0.035 neff = 567.08
config 99/151=[ 2.25 3.75] weight = 0.084 adjusted weight = 0.109 neff = 553.65
config 100/151=[ -2.25 -3.75] weight = 0.003 adjusted weight = 0.004 neff = 682.73
config 101/151=[ 3.75 -2.25] weight = 0.012 adjusted weight = 0.015 neff = 507.65
config 102/151=[ 3.75 2.25] weight = 0.005 adjusted weight = 0.006 neff = 497.61
config 103/151=[ -2.25 3.75] weight = 0.006 adjusted weight = 0.008 neff = 702.24
config 104/151=[ 0.00 4.50] weight = 0.135 adjusted weight = 0.177 neff = 634.55
config 105/151=[ 0.00 -4.50] weight = 0.005 adjusted weight = 0.006 neff = 636.54
config 106/151=[ 0.75 -4.50] weight = 0.006 adjusted weight = 0.008 neff = 618.37
config 107/151=[ -0.75 4.50] weight = 0.061 adjusted weight = 0.081 neff = 659.82
config 108/151=[ 0.75 4.50] weight = 0.171 adjusted weight = 0.226 neff = 609.66
config 109/151=[ -1.50 4.50] weight = 0.015 adjusted weight = 0.020 neff = 685.47
config 110/151=[ 1.50 4.50] weight = 0.146 adjusted weight = 0.201 neff = 585.01
config 111/151=[ 1.50 -4.50] weight = 0.007 adjusted weight = 0.010 neff = 600.65
config 112/151=[ 3.75 -3.00] weight = 0.010 adjusted weight = 0.015 neff = 518.29
config 113/151=[ 3.00 3.75] weight = 0.023 adjusted weight = 0.033 neff = 530.42
config 114/151=[ 3.75 3.00] weight = 0.005 adjusted weight = 0.007 neff = 502.00
config 115/151=[ 3.00 -3.75] weight = 0.016 adjusted weight = 0.022 neff = 549.40
config 116/151=[ 2.25 -4.50] weight = 0.006 adjusted weight = 0.009 neff = 583.33
config 117/151=[ 2.25 4.50] weight = 0.075 adjusted weight = 0.110 neff = 560.83
config 118/151=[ 0.00 5.25] weight = 0.073 adjusted weight = 0.110 neff = 643.41
config 119/151=[ 3.75 3.75] weight = 0.004 adjusted weight = 0.007 neff = 507.70
config 120/151=[ -0.75 5.25] weight = 0.025 adjusted weight = 0.039 neff = 669.07
config 121/151=[ 0.75 5.25] weight = 0.119 adjusted weight = 0.183 neff = 618.13
config 122/151=[ 3.75 -3.75] weight = 0.006 adjusted weight = 0.010 neff = 532.45
config 123/151=[ 3.00 -4.50] weight = 0.004 adjusted weight = 0.007 neff = 566.68
config 124/151=[ 3.00 4.50] weight = 0.024 adjusted weight = 0.039 neff = 537.16
config 125/151=[ 1.50 5.25] weight = 0.103 adjusted weight = 0.164 neff = 593.37
config 126/151=[ -1.50 5.25] weight = 0.005 adjusted weight = 0.008 neff = 694.98
config 127/151=[ 2.25 5.25] weight = 0.062 adjusted weight = 0.104 neff = 568.87
config 128/151=[ 3.75 4.50] weight = 0.005 adjusted weight = 0.008 neff = 514.12
config 129/151=[ 0.00 6.00] weight = 0.038 adjusted weight = 0.066 neff = 652.82
config 130/151=[ 3.00 5.25] weight = 0.022 adjusted weight = 0.041 neff = 544.87
config 131/151=[ 0.75 6.00] weight = 0.072 adjusted weight = 0.128 neff = 627.32
config 132/151=[ -0.75 6.00] weight = 0.011 adjusted weight = 0.019 neff = 678.66
config 133/151=[ 1.50 6.00] weight = 0.080 adjusted weight = 0.149 neff = 602.16
config 134/151=[ 2.25 6.00] weight = 0.054 adjusted weight = 0.106 neff = 577.42
config 135/151=[ 3.75 5.25] weight = 0.005 adjusted weight = 0.011 neff = 521.32
config 136/151=[ 3.00 6.00] weight = 0.022 adjusted weight = 0.048 neff = 553.11
config 137/151=[ 0.00 6.75] weight = 0.018 adjusted weight = 0.036 neff = 662.71
config 138/151=[ -0.75 6.75] weight = 0.004 adjusted weight = 0.009 neff = 688.70
config 139/151=[ 0.75 6.75] weight = 0.040 adjusted weight = 0.085 neff = 637.00
config 140/151=[ 1.50 6.75] weight = 0.055 adjusted weight = 0.120 neff = 611.59
config 141/151=[ 3.75 6.00] weight = 0.006 adjusted weight = 0.014 neff = 529.31
config 142/151=[ 2.25 6.75] weight = 0.043 adjusted weight = 0.101 neff = 586.57
config 143/151=[ 3.00 6.75] weight = 0.021 adjusted weight = 0.053 neff = 561.97
config 144/151=[ 0.00 7.50] weight = 0.008 adjusted weight = 0.019 neff = 672.98
config 145/151=[ 1.50 7.50] weight = 0.029 adjusted weight = 0.077 neff = 621.69
config 146/151=[ 0.75 7.50] weight = 0.022 adjusted weight = 0.055 neff = 647.06
config 147/151=[ 3.75 6.75] weight = 0.006 adjusted weight = 0.017 neff = 537.96
config 148/151=[ 2.25 7.50] weight = 0.034 adjusted weight = 0.095 neff = 596.17
config 149/151=[ 3.00 7.50] weight = 0.019 adjusted weight = 0.059 neff = 571.30
config 150/151=[ 3.75 7.50] weight = 0.007 adjusted weight = 0.023 neff = 546.92
Done.
Expected effective number of parameters: 601.924(35.713), eqv.#replicates: 5.057
DIC:
Mean of Deviance................. 2941.69
Deviance at Mean................. 2423.95
Effective number of parameters... 517.743
DIC.............................. 3459.43
Marginal likelihood: Integration -1532.135259 Gaussian-approx -1533.217503
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d34b61d64a/Model.ini]
Preparations : 0.094 seconds
Approx inference: 482.319 seconds [0.1|0.0|5.1|85.3|9.5]%
Output : 1.014 seconds
---------------------------------
Total : 483.428 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d37d52e341] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3544b5365]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31d50371f]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3544b5365]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 1, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3205d1121] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d32d70ee94]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33f43043d]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33e0f9e20]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d34cc600ae] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d35b56c6e2] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d31e1b4e47] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d312b026c2] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d36ac09423] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d393dbc96] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d334282097] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d33673b441] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/data.files/filee1d3663f3354] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7ffe73d15370
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1827.432745 fn= 1 theta= 3.990000 4.000000 range=[-1.947 5.726]
max.logdens= -1809.687438 fn= 5 theta= 3.213714 3.382137 range=[-1.966 6.049]
max.logdens= -1809.465138 fn= 6 theta= 3.203714 3.382137 range=[-1.966 6.049]
max.logdens= -1797.228983 fn= 11 theta= 2.859886 3.104098 range=[-1.981 6.214]
max.logdens= -1796.920146 fn= 13 theta= 2.849886 3.104098 range=[-1.981 6.215]
max.logdens= -1780.416455 fn= 16 theta= 2.494259 2.816788 range=[-2.001 6.404]
max.logdens= -1780.000110 fn= 18 theta= 2.484259 2.816788 range=[-2.001 6.405]
max.logdens= -1756.407107 fn= 21 theta= 2.084303 2.494645 range=[-2.031 6.658]
max.logdens= -1756.263557 fn= 22 theta= 2.084303 2.484645 range=[-2.031 6.663]
max.logdens= -1755.869449 fn= 23 theta= 2.074303 2.494645 range=[-2.031 6.661]
max.logdens= -1726.593168 fn= 26 theta= 1.650950 2.154116 range=[-2.074 6.992]
max.logdens= -1725.979735 fn= 27 theta= 1.640950 2.154116 range=[-2.075 6.996]
max.logdens= -1698.182239 fn= 31 theta= 1.246001 1.835907 range=[-2.128 7.340]
max.logdens= -1698.064389 fn= 33 theta= 1.246001 1.825907 range=[-2.129 7.346]
max.logdens= -1697.594732 fn= 34 theta= 1.236001 1.835907 range=[-2.128 7.345]
max.logdens= -1677.699944 fn= 36 theta= 0.915692 1.576351 range=[-2.179 7.622]
max.logdens= -1677.210741 fn= 38 theta= 0.905692 1.576351 range=[-2.180 7.627]
max.logdens= -1665.768229 fn= 41 theta= 0.671754 1.384664 range=[-2.221 7.820]
max.logdens= -1665.399703 fn= 42 theta= 0.661754 1.384664 range=[-2.222 7.824]
max.logdens= -1658.223383 fn= 46 theta= 0.445024 1.206499 range=[-2.264 7.993]
max.logdens= -1658.006084 fn= 47 theta= 0.435024 1.206499 range=[-2.265 7.996]
max.logdens= -1655.090647 fn= 51 theta= 0.229630 1.037243 range=[-2.310 8.148]
max.logdens= -1655.090097 fn= 52 theta= 0.229630 1.027243 range=[-2.311 8.152]
max.logdens= -1655.052743 fn= 53 theta= 0.219630 1.037243 range=[-2.311 8.151]
max.logdens= -1655.004338 fn= 57 theta= 0.189923 1.006041 range=[-2.319 8.175]
max.logdens= -1655.003951 fn= 60 theta= 0.179923 1.006041 range=[-2.320 8.179]
max.logdens= -1654.999538 fn= 61 theta= 0.189923 1.016041 range=[-2.318 8.171]
Iter=1 |grad|=0.761 |x-x.old|=3.43 |f-f.old|=173
max.logdens= -1654.997600 fn= 69 theta= 0.188301 1.017672 range=[-2.318 8.170]
max.logdens= -1654.996931 fn= 74 theta= 0.187567 1.018411 range=[-2.318 8.170]
max.logdens= -1654.996417 fn= 79 theta= 0.187120 1.018860 range=[-2.318 8.170]
max.logdens= -1654.996100 fn= 84 theta= 0.186798 1.019184 range=[-2.318 8.170]
max.logdens= -1654.995749 fn= 89 theta= 0.186559 1.019425 range=[-2.318 8.170]
max.logdens= -1654.995732 fn= 94 theta= 0.186371 1.019614 range=[-2.318 8.170]
max.logdens= -1654.995561 fn= 99 theta= 0.186219 1.019767 range=[-2.318 8.170]
max.logdens= -1654.995479 fn= 105 theta= 0.186161 1.019825 range=[-2.318 8.170]
max.logdens= -1654.995392 fn= 114 theta= 0.186161 1.019825 range=[-2.318 8.170]
Iter=2 |grad|=0.613 |x-x.old|=0.00377(pass) |f-f.old|=0.0041 Reached numerical limit!
Number of function evaluations = 114
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
107.685067 12.959650
12.959650 12.763562
Eigenvectors of the Hessian
0.991131 -0.132887
0.132887 0.991131
Eigenvalues of the Hessian
109.422644
11.025986
StDev/Correlation matrix (scaled inverse Hessian)
0.102855 -0.349566
0.298755
Compute corrected stdev for theta[0]: negative 1.106405 positive 1.140903
Compute corrected stdev for theta[1]: negative 1.299439 positive 2.464009
max.logdens= -1655.000229 fn= 128 theta= 0.186161 1.009825 range=[-2.319 8.175]
config 0=[ 0.75 0.00] log(rel.dens)=-0.39, [0] accept, compute, 10.90s
config 1=[ -0.75 0.00] log(rel.dens)=-0.42, [2] accept, compute, 11.05s
config 2=[ 0.00 0.00] log(rel.dens)=-0.15, [1] accept, compute, 11.07s
config 3=[ 0.00 -0.75] log(rel.dens)=-0.33, [3] accept, compute, 11.07s
config 4=[ 0.00 0.75] log(rel.dens)=-0.04, [0] accept, compute, 10.25s
config 5=[ -0.75 0.75] log(rel.dens)=-0.22, [2] accept, compute, 10.21s
config 6=[ -0.75 -0.75] log(rel.dens)=-0.54, [1] accept, compute, 10.31s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.51, [3] accept, compute, 10.35s
config 8=[ 0.75 0.75] log(rel.dens)=-0.22, [0] accept, compute, 10.11s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.71, [2] accept, compute, 10.15s
config 10=[ -1.50 0.00] log(rel.dens)=-1.01, [1] accept, compute, 10.04s
config 11=[ 1.50 0.00] log(rel.dens)=-0.97, [3] accept, compute, 10.11s
config 12=[ 0.00 1.50] log(rel.dens)=-0.15, [0] accept, compute, 10.38s
config 13=[ 0.75 -1.50] log(rel.dens)=-0.87, [1] accept, compute, 10.42s
config 14=[ -0.75 1.50] log(rel.dens)=-0.37, [2] accept, compute, 10.56s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.95, [3] accept, compute, 10.47s
config 16=[ 0.75 1.50] log(rel.dens)=-0.26, [0] accept, compute, 9.93s
config 17=[ -1.50 -0.75] log(rel.dens)=-1.10, [1] accept, compute, 10.13s
config 18=[ 1.50 -0.75] log(rel.dens)=-1.07, [2] accept, compute, 10.11s
config 19=[ -1.50 0.75] log(rel.dens)=-0.95, [3] accept, compute, 10.10s
config 20=[ 1.50 0.75] log(rel.dens)=-0.90, [0] accept, compute, 10.71s
config 21=[ -1.50 -1.50] log(rel.dens)=-1.64, [1] accept, compute, 10.35s
config 22=[ 1.50 1.50] log(rel.dens)=-0.81, [2] accept, compute, 10.70s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.41, [3] accept, compute, 10.86s
config 24=[ -1.50 1.50] log(rel.dens)=-1.22, [0] accept, compute, 10.54s
config 25=[ 0.00 -2.25] log(rel.dens)=-1.48, [1] accept, compute, 10.80s
config 26=[ 2.25 0.00] log(rel.dens)=-2.08, [2] accept, compute, 10.54s
config 27=[ -2.25 0.00] log(rel.dens)=-2.09, [3] accept, compute, 10.66s
config 28=[ 0.00 2.25] log(rel.dens)=-0.27, [0] accept, compute, 10.63s
config 29=[ 2.25 0.75] log(rel.dens)=-1.87, [1] accept, compute, 10.66s
config 30=[ -0.75 -2.25] log(rel.dens)=-1.80, [2] accept, compute, 10.70s
config 31=[ 0.75 -2.25] log(rel.dens)=-1.55, [3] accept, compute, 10.86s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.24, [0] accept, compute, 10.46s
config 33=[ 2.25 -0.75] log(rel.dens)=-2.15, [1] accept, compute, 10.28s
config 34=[ -0.75 2.25] log(rel.dens)=-0.71, [2] accept, compute, 10.47s
config 35=[ -2.25 0.75] log(rel.dens)=-2.22, [3] accept, compute, 10.51s
config 36=[ 0.75 2.25] log(rel.dens)=-0.34, [0] accept, compute, 10.99s
config 37=[ -2.25 -1.50] log(rel.dens)=-2.75, [1] accept, compute, 11.05s
config 38=[ 2.25 -1.50] log(rel.dens)=-2.29, [2] accept, compute, 10.87s
config 39=[ -1.50 -2.25] log(rel.dens)=-2.51, [3] accept, compute, 10.93s
config 40=[ 2.25 1.50] log(rel.dens)=-1.86, [0] accept, compute, 10.29s
config 41=[ 1.50 -2.25] log(rel.dens)=-2.08, [2] accept, compute, 10.39s
config 42=[ -1.50 2.25] log(rel.dens)=-1.67, [1] accept, compute, 10.66s
config 43=[ -2.25 1.50] log(rel.dens)=-2.60, [3] accept, compute, 10.51s
config 44=[ 1.50 2.25] log(rel.dens)=-0.99, [0] accept, compute, 10.99s
config 45=[ 3.00 0.00] log(rel.dens)=-3.34, [1] accept, compute, 10.90s
config 46=[ 0.00 3.00] log(rel.dens)=-0.64, [2] accept, compute, 11.08s
config 47=[ 0.00 -3.00] log(rel.dens)=-2.67, [3] accept, compute, 11.06s
config 48=[ -3.00 0.00] log(rel.dens)=-3.81, [0] accept, compute, 10.48s
config 49=[ -0.75 -3.00] log(rel.dens)=-3.11, [1] accept, compute, 10.57s
config 50=[ -3.00 0.75] log(rel.dens)=-4.03, [2] accept, compute, 10.65s
config 51=[ 3.00 0.75] log(rel.dens)=-3.32, [3] accept, compute, 10.66s
config 52=[ -0.75 3.00] log(rel.dens)=-1.20, [0] accept, compute, 10.90s
config 53=[ 0.75 -3.00] log(rel.dens)=-2.80, [1] accept, compute, 10.89s
config 54=[ 0.75 3.00] log(rel.dens)=-0.59, [2] accept, compute, 11.02s
config 55=[ 3.00 -0.75] log(rel.dens)=-3.48, [3] accept, compute, 10.83s
config 56=[ -3.00 -0.75] log(rel.dens)=-3.87, [0] accept, compute, 10.53s
config 57=[ 2.25 2.25] log(rel.dens)=-1.89, [1] accept, compute, 10.74s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.71, [2] accept, compute, 10.71s
config 59=[ -2.25 -2.25] log(rel.dens)=-3.68, [3] accept, compute, 10.78s
config 60=[ -2.25 2.25] log(rel.dens)=-3.19, [0] accept, compute, 10.33s
config 61=[ -1.50 3.00] log(rel.dens)=-2.32, [1] accept, compute, 10.41s
config 62=[ -3.00 -1.50] log(rel.dens)=-4.35, [2] accept, compute, 10.48s
config 63=[ 1.50 -3.00] log(rel.dens)=-2.85, [3] accept, compute, 10.33s
config 64=[ 3.00 1.50] log(rel.dens)=-3.33, [0] accept, compute, 10.63s
config 65=[ 1.50 3.00] log(rel.dens)=-1.05, [1] accept, compute, 10.72s
config 66=[ -3.00 1.50] log(rel.dens)=-4.54, [2] accept, compute, 10.67s
config 67=[ -1.50 -3.00] log(rel.dens)=-3.90, [3] accept, compute, 10.65s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.49, [0] accept, compute, 10.56s
config 69=[ -2.25 -3.00] log(rel.dens)=-5.12, [1] accept, compute, 10.49s
config 70=[ 2.25 -3.00] log(rel.dens)=-3.43, [2] accept, compute, 10.43s
config 71=[ 0.00 -3.75] log(rel.dens)=-4.60, [3] accept, compute, 10.31s
config 72=[ -3.00 2.25] log(rel.dens)=-5.38, [0] accept, compute, 11.00s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.76, [1] accept, compute, 11.10s
config 74=[ -3.00 -2.25] log(rel.dens)=-5.24, [3] accept, compute, 10.87s
config 75=[ 3.00 2.25] log(rel.dens)=-3.31, [2] accept, compute, 11.25s
config 76=[ 2.25 3.00] log(rel.dens)=-1.99, [0] accept, compute, 10.37s
config 77=[ -3.75 0.00] log(rel.dens)=-6.09, reject, 0.32s
config 78=[ 0.00 3.75] log(rel.dens)=-1.13, [1] accept, compute, 10.42s
config 79=[ -2.25 3.00] log(rel.dens)=-3.99, [3] accept, compute, 10.37s
config 80=[ 3.75 0.00] log(rel.dens)=-5.06, [2] accept, compute, 10.41s
config 81=[ -0.75 3.75] log(rel.dens)=-1.83, [0] accept, compute, 10.17s
config 82=[ 0.75 -3.75] log(rel.dens)=-4.18, [1] accept, compute, 10.19s
config 83=[ 3.75 0.75] log(rel.dens)=-5.15, [3] accept, compute, 10.23s
config 84=[ 3.75 -0.75] log(rel.dens)=-5.04, [2] accept, compute, 10.14s
config 85=[ 0.75 3.75] log(rel.dens)=-0.93, [0] accept, compute, 10.35s
config 86=[ -0.75 -3.75] log(rel.dens)=-5.20, [1] accept, compute, 10.19s
config 87=[ 3.75 1.50] log(rel.dens)=-5.12, [2] accept, compute, 10.32s
config 88=[ -1.50 3.75] log(rel.dens)=-3.17, [3] accept, compute, 10.41s
config 89=[ -1.50 -3.75] log(rel.dens)=-5.95, [0] accept, compute, 10.13s
config 90=[ -3.00 -3.00] log(rel.dens)=-6.97, reject, 0.23s
config 91=[ 1.50 -3.75] log(rel.dens)=-4.22, [1] accept, compute, 10.19s
config 92=[ 3.75 -1.50] log(rel.dens)=-5.03, [3] accept, compute, 10.07s
config 93=[ 1.50 3.75] log(rel.dens)=-1.27, [2] accept, compute, 10.23s
config 94=[ -3.00 3.00] log(rel.dens)=-6.41, reject, 0.32s
config 95=[ 3.00 -3.00] log(rel.dens)=-4.26, [0] accept, compute, 9.90s
config 96=[ -2.25 -3.75] log(rel.dens)=-7.25, reject, 0.30s
config 97=[ 3.00 3.00] log(rel.dens)=-3.34, [1] accept, compute, 10.09s
config 98=[ 2.25 -3.75] log(rel.dens)=-4.56, [2] accept, compute, 9.98s
config 99=[ 2.25 3.75] log(rel.dens)=-2.11, [3] accept, compute, 10.09s
config 100=[ 3.75 -2.25] log(rel.dens)=-5.08, [0] accept, compute, 10.51s
config 101=[ 3.75 2.25] log(rel.dens)=-5.20, [1] accept, compute, 10.36s
config 102=[ 4.50 0.00] log(rel.dens)=-7.11, reject, 0.30s
config 103=[ 0.00 -4.50] log(rel.dens)=-6.95, reject, 0.35s
config 104=[ -2.25 3.75] log(rel.dens)=-5.03, [2] accept, compute, 10.46s
config 105=[ 0.75 -4.50] log(rel.dens)=-6.51, reject, 0.39s
config 106=[ 0.00 4.50] log(rel.dens)=-1.71, [3] accept, compute, 10.49s
config 107=[ -0.75 4.50] log(rel.dens)=-2.62, [0] accept, compute, 10.21s
config 108=[ 0.75 4.50] log(rel.dens)=-1.38, [2] accept, compute, 10.24s
config 109=[ -1.50 4.50] log(rel.dens)=-4.09, [1] accept, compute, 10.20s
config 110=[ 1.50 4.50] log(rel.dens)=-1.58, [3] accept, compute, 10.20s
config 111=[ 3.75 -3.00] log(rel.dens)=-5.36, [0] accept, compute, 11.33s
config 112=[ 3.00 3.75] log(rel.dens)=-3.37, [2] accept, compute, 11.21s
config 113=[ -2.25 4.50] log(rel.dens)=-6.25, reject, 0.33s
config 114=[ 3.75 3.00] log(rel.dens)=-5.12, [1] accept, compute, 11.49s
config 115=[ 3.00 -3.75] log(rel.dens)=-5.16, [3] accept, compute, 11.36s
config 116=[ 2.25 4.50] log(rel.dens)=-2.39, [2] accept, compute, 10.00s
config 117=[ 0.00 5.25] log(rel.dens)=-2.42, [0] accept, compute, 10.19s
config 118=[ 3.75 3.75] log(rel.dens)=-5.09, [1] accept, compute, 10.18s
config 119=[ -0.75 5.25] log(rel.dens)=-3.55, [3] accept, compute, 10.27s
config 120=[ 0.75 5.25] log(rel.dens)=-1.92, [2] accept, compute, 10.53s
config 121=[ 3.75 -3.75] log(rel.dens)=-6.00, [0] accept, compute, 10.55s
config 122=[ 3.00 4.50] log(rel.dens)=-3.55, [1] accept, compute, 10.50s
config 123=[ 1.50 5.25] log(rel.dens)=-1.96, [3] accept, compute, 10.58s
config 124=[ -1.50 5.25] log(rel.dens)=-5.16, [2] accept, compute, 10.45s
config 125=[ 2.25 5.25] log(rel.dens)=-2.54, [0] accept, compute, 10.47s
config 126=[ 3.75 4.50] log(rel.dens)=-5.11, [1] accept, compute, 10.41s
config 127=[ 0.00 6.00] log(rel.dens)=-3.24, [3] accept, compute, 10.51s
config 128=[ 3.00 5.25] log(rel.dens)=-3.57, [2] accept, compute, 10.94s
config 129=[ 0.75 6.00] log(rel.dens)=-2.55, [0] accept, compute, 10.75s
config 130=[ -1.50 6.00] log(rel.dens)=-6.41, reject, 0.36s
config 131=[ -0.75 6.00] log(rel.dens)=-4.54, [1] accept, compute, 10.97s
config 132=[ 1.50 6.00] log(rel.dens)=-2.42, [3] accept, compute, 10.88s
config 133=[ 2.25 6.00] log(rel.dens)=-2.81, [0] accept, compute, 10.31s
config 134=[ 3.75 5.25] log(rel.dens)=-5.09, [2] accept, compute, 10.27s
config 135=[ 3.00 6.00] log(rel.dens)=-3.72, [1] accept, compute, 10.41s
config 136=[ 0.00 6.75] log(rel.dens)=-4.14, [3] accept, compute, 10.53s
config 137=[ -0.75 6.75] log(rel.dens)=-5.63, [0] accept, compute, 10.33s
config 138=[ 0.75 6.75] log(rel.dens)=-3.26, [2] accept, compute, 10.48s
config 139=[ 1.50 6.75] log(rel.dens)=-2.94, [1] accept, compute, 10.44s
config 140=[ 3.75 6.00] log(rel.dens)=-5.10, [3] accept, compute, 10.47s
config 141=[ -0.75 7.50] log(rel.dens)=-6.87, reject, 0.32s
config 142=[ 2.25 6.75] log(rel.dens)=-3.17, [0] accept, compute, 10.16s
config 143=[ 3.00 6.75] log(rel.dens)=-3.92, [2] accept, compute, 10.16s
config 144=[ 0.00 7.50] log(rel.dens)=-5.13, [1] accept, compute, 10.18s
config 145=[ 0.75 7.50] log(rel.dens)=-4.03, [3] accept, compute, 10.22s
config 146=[ 1.50 7.50] log(rel.dens)=-3.68, [0] accept, compute, 10.13s
config 147=[ 0.00 8.25] log(rel.dens)=-6.18, reject, 0.32s
config 148=[ 3.75 6.75] log(rel.dens)=-5.21, [2] accept, compute, 10.21s
config 149=[ 2.25 7.50] log(rel.dens)=-3.57, [1] accept, compute, 10.16s
config 150=[ 3.00 7.50] log(rel.dens)=-4.15, [3] accept, compute, 10.00s
config 151=[ 3.75 7.50] log(rel.dens)=-5.24, [0] accept, compute, 5.19s
Combine the densities with relative weights:
config 0/141=[ 0.75 0.00] weight = 0.706 adjusted weight = 0.605 neff = 558.42
config 1/141=[ -0.75 0.00] weight = 0.689 adjusted weight = 0.590 neff = 605.04
config 2/141=[ 0.00 0.00] weight = 0.897 adjusted weight = 0.759 neff = 581.42
config 3/141=[ 0.00 -0.75] weight = 0.747 adjusted weight = 0.641 neff = 581.46
config 4/141=[ 0.00 0.75] weight = 1.000 adjusted weight = 0.857 neff = 583.22
config 5/141=[ -0.75 0.75] weight = 0.835 adjusted weight = 0.725 neff = 607.21
config 6/141=[ -0.75 -0.75] weight = 0.610 adjusted weight = 0.530 neff = 604.43
config 7/141=[ 0.75 -0.75] weight = 0.625 adjusted weight = 0.542 neff = 558.99
config 8/141=[ 0.75 0.75] weight = 0.839 adjusted weight = 0.729 neff = 559.63
config 9/141=[ 0.00 -1.50] weight = 0.514 adjusted weight = 0.458 neff = 583.80
config 10/141=[ -1.50 0.00] weight = 0.381 adjusted weight = 0.339 neff = 629.00
config 11/141=[ 1.50 0.00] weight = 0.397 adjusted weight = 0.354 neff = 535.91
config 12/141=[ 0.00 1.50] weight = 0.900 adjusted weight = 0.801 neff = 586.83
config 13/141=[ 0.75 -1.50] weight = 0.437 adjusted weight = 0.394 neff = 562.03
config 14/141=[ -0.75 1.50] weight = 0.720 adjusted weight = 0.650 neff = 611.25
config 15/141=[ -0.75 -1.50] weight = 0.404 adjusted weight = 0.365 neff = 606.13
config 16/141=[ 0.75 1.50] weight = 0.803 adjusted weight = 0.725 neff = 562.74
config 17/141=[ -1.50 -0.75] weight = 0.346 adjusted weight = 0.312 neff = 627.81
config 18/141=[ 1.50 -0.75] weight = 0.358 adjusted weight = 0.323 neff = 537.10
config 19/141=[ -1.50 0.75] weight = 0.404 adjusted weight = 0.364 neff = 631.79
config 20/141=[ 1.50 0.75] weight = 0.424 adjusted weight = 0.383 neff = 536.73
config 21/141=[ -1.50 -1.50] weight = 0.201 adjusted weight = 0.189 neff = 629.05
config 22/141=[ 1.50 1.50] weight = 0.464 adjusted weight = 0.435 neff = 539.19
config 23/141=[ 1.50 -1.50] weight = 0.255 adjusted weight = 0.239 neff = 540.87
config 24/141=[ -1.50 1.50] weight = 0.308 adjusted weight = 0.289 neff = 636.33
config 25/141=[ 0.00 -2.25] weight = 0.237 adjusted weight = 0.225 neff = 589.01
config 26/141=[ 2.25 0.00] weight = 0.131 adjusted weight = 0.124 neff = 514.23
config 27/141=[ -2.25 0.00] weight = 0.129 adjusted weight = 0.122 neff = 653.43
config 28/141=[ 0.00 2.25] weight = 0.795 adjusted weight = 0.754 neff = 591.71
config 29/141=[ 2.25 0.75] weight = 0.161 adjusted weight = 0.155 neff = 514.27
config 30/141=[ -0.75 -2.25] weight = 0.173 adjusted weight = 0.166 neff = 610.65
config 31/141=[ 0.75 -2.25] weight = 0.221 adjusted weight = 0.213 neff = 567.96
config 32/141=[ -2.25 -0.75] weight = 0.111 adjusted weight = 0.107 neff = 651.82
config 33/141=[ 2.25 -0.75] weight = 0.121 adjusted weight = 0.117 neff = 516.05
config 34/141=[ -0.75 2.25] weight = 0.514 adjusted weight = 0.494 neff = 616.72
config 35/141=[ -2.25 0.75] weight = 0.113 adjusted weight = 0.109 neff = 656.87
config 36/141=[ 0.75 2.25] weight = 0.739 adjusted weight = 0.710 neff = 567.23
config 37/141=[ -2.25 -1.50] weight = 0.067 adjusted weight = 0.067 neff = 652.41
config 38/141=[ 2.25 -1.50] weight = 0.105 adjusted weight = 0.105 neff = 520.32
config 39/141=[ -1.50 -2.25] weight = 0.085 adjusted weight = 0.085 neff = 632.81
config 40/141=[ 2.25 1.50] weight = 0.163 adjusted weight = 0.163 neff = 516.36
config 41/141=[ 1.50 -2.25] weight = 0.130 adjusted weight = 0.130 neff = 547.64
config 42/141=[ -1.50 2.25] weight = 0.196 adjusted weight = 0.195 neff = 642.22
config 43/141=[ -2.25 1.50] weight = 0.078 adjusted weight = 0.078 neff = 661.85
config 44/141=[ 1.50 2.25] weight = 0.388 adjusted weight = 0.387 neff = 543.45
config 45/141=[ 3.00 0.00] weight = 0.037 adjusted weight = 0.038 neff = 492.89
config 46/141=[ 0.00 3.00] weight = 0.553 adjusted weight = 0.571 neff = 597.96
config 47/141=[ 0.00 -3.00] weight = 0.072 adjusted weight = 0.074 neff = 597.39
config 48/141=[ -3.00 0.00] weight = 0.023 adjusted weight = 0.024 neff = 678.45
config 49/141=[ -0.75 -3.00] weight = 0.047 adjusted weight = 0.049 neff = 618.26
config 50/141=[ -3.00 0.75] weight = 0.019 adjusted weight = 0.019 neff = 682.36
config 51/141=[ 3.00 0.75] weight = 0.038 adjusted weight = 0.040 neff = 492.59
config 52/141=[ -0.75 3.00] weight = 0.316 adjusted weight = 0.330 neff = 623.37
config 53/141=[ 0.75 -3.00] weight = 0.063 adjusted weight = 0.066 neff = 577.38
config 54/141=[ 0.75 3.00] weight = 0.576 adjusted weight = 0.603 neff = 573.07
config 55/141=[ 3.00 -0.75] weight = 0.032 adjusted weight = 0.034 neff = 495.50
config 56/141=[ -3.00 -0.75] weight = 0.022 adjusted weight = 0.023 neff = 676.28
config 57/141=[ 2.25 2.25] weight = 0.157 adjusted weight = 0.167 neff = 520.01
config 58/141=[ 2.25 -2.25] weight = 0.070 adjusted weight = 0.074 neff = 527.63
config 59/141=[ -2.25 -2.25] weight = 0.026 adjusted weight = 0.028 neff = 655.52
config 60/141=[ -2.25 2.25] weight = 0.043 adjusted weight = 0.045 neff = 668.14
config 61/141=[ -1.50 3.00] weight = 0.103 adjusted weight = 0.112 neff = 649.25
config 62/141=[ -3.00 -1.50] weight = 0.013 adjusted weight = 0.015 neff = 676.26
config 63/141=[ 1.50 -3.00] weight = 0.060 adjusted weight = 0.065 neff = 557.39
config 64/141=[ 3.00 1.50] weight = 0.037 adjusted weight = 0.041 neff = 494.20
config 65/141=[ 1.50 3.00] weight = 0.367 adjusted weight = 0.399 neff = 548.72
config 66/141=[ -3.00 1.50] weight = 0.011 adjusted weight = 0.012 neff = 687.78
config 67/141=[ -1.50 -3.00] weight = 0.021 adjusted weight = 0.023 neff = 639.63
config 68/141=[ 3.00 -1.50] weight = 0.032 adjusted weight = 0.035 neff = 500.40
config 69/141=[ -2.25 -3.00] weight = 0.006 adjusted weight = 0.007 neff = 661.56
config 70/141=[ 2.25 -3.00] weight = 0.034 adjusted weight = 0.039 neff = 538.32
config 71/141=[ 0.00 -3.75] weight = 0.010 adjusted weight = 0.012 neff = 609.62
config 72/141=[ -3.00 2.25] weight = 0.005 adjusted weight = 0.006 neff = 694.55
config 73/141=[ 3.00 -2.25] weight = 0.024 adjusted weight = 0.028 neff = 508.42
config 74/141=[ -3.00 -2.25] weight = 0.006 adjusted weight = 0.006 neff = 678.64
config 75/141=[ 3.00 2.25] weight = 0.038 adjusted weight = 0.044 neff = 497.34
config 76/141=[ 2.25 3.00] weight = 0.143 adjusted weight = 0.166 neff = 525.01
config 77/141=[ 0.00 3.75] weight = 0.338 adjusted weight = 0.388 neff = 605.24
config 78/141=[ -2.25 3.00] weight = 0.019 adjusted weight = 0.022 neff = 675.53
config 79/141=[ 3.75 0.00] weight = 0.007 adjusted weight = 0.008 neff = 472.40
config 80/141=[ -0.75 3.75] weight = 0.168 adjusted weight = 0.195 neff = 631.00
config 81/141=[ 0.75 -3.75] weight = 0.016 adjusted weight = 0.019 neff = 589.94
config 82/141=[ 3.75 0.75] weight = 0.006 adjusted weight = 0.007 neff = 471.63
config 83/141=[ 3.75 -0.75] weight = 0.007 adjusted weight = 0.008 neff = 475.51
config 84/141=[ 0.75 3.75] weight = 0.410 adjusted weight = 0.477 neff = 579.95
config 85/141=[ -0.75 -3.75] weight = 0.006 adjusted weight = 0.007 neff = 629.64
config 86/141=[ 3.75 1.50] weight = 0.006 adjusted weight = 0.008 neff = 472.63
config 87/141=[ -1.50 3.75] weight = 0.044 adjusted weight = 0.053 neff = 657.28
config 88/141=[ -1.50 -3.75] weight = 0.003 adjusted weight = 0.003 neff = 649.93
config 89/141=[ 1.50 -3.75] weight = 0.015 adjusted weight = 0.019 neff = 571.03
config 90/141=[ 3.75 -1.50] weight = 0.007 adjusted weight = 0.008 neff = 481.19
config 91/141=[ 1.50 3.75] weight = 0.292 adjusted weight = 0.353 neff = 555.22
config 92/141=[ 3.00 -3.00] weight = 0.015 adjusted weight = 0.019 neff = 519.81
config 93/141=[ 3.00 3.00] weight = 0.037 adjusted weight = 0.047 neff = 501.88
config 94/141=[ 2.25 -3.75] weight = 0.011 adjusted weight = 0.014 neff = 552.76
config 95/141=[ 2.25 3.75] weight = 0.126 adjusted weight = 0.162 neff = 531.10
config 96/141=[ 3.75 -2.25] weight = 0.006 adjusted weight = 0.008 neff = 489.84
config 97/141=[ 3.75 2.25] weight = 0.006 adjusted weight = 0.007 neff = 475.45
config 98/141=[ -2.25 3.75] weight = 0.007 adjusted weight = 0.009 neff = 683.89
config 99/141=[ 0.00 4.50] weight = 0.188 adjusted weight = 0.245 neff = 613.35
config 100/141=[ -0.75 4.50] weight = 0.076 adjusted weight = 0.100 neff = 639.48
config 101/141=[ 0.75 4.50] weight = 0.262 adjusted weight = 0.345 neff = 587.73
config 102/141=[ -1.50 4.50] weight = 0.017 adjusted weight = 0.024 neff = 666.01
config 103/141=[ 1.50 4.50] weight = 0.216 adjusted weight = 0.295 neff = 562.62
config 104/141=[ 3.75 -3.00] weight = 0.005 adjusted weight = 0.007 neff = 501.96
config 105/141=[ 3.00 3.75] weight = 0.036 adjusted weight = 0.050 neff = 507.54
config 106/141=[ 3.75 3.00] weight = 0.006 adjusted weight = 0.009 neff = 479.45
config 107/141=[ 3.00 -3.75] weight = 0.006 adjusted weight = 0.008 neff = 535.06
config 108/141=[ 2.25 4.50] weight = 0.096 adjusted weight = 0.140 neff = 538.26
config 109/141=[ 0.00 5.25] weight = 0.093 adjusted weight = 0.139 neff = 622.18
config 110/141=[ 3.75 3.75] weight = 0.006 adjusted weight = 0.010 neff = 484.68
config 111/141=[ -0.75 5.25] weight = 0.030 adjusted weight = 0.046 neff = 648.65
config 112/141=[ 0.75 5.25] weight = 0.153 adjusted weight = 0.232 neff = 596.24
config 113/141=[ 3.75 -3.75] weight = 0.003 adjusted weight = 0.004 neff = 517.98
config 114/141=[ 3.00 4.50] weight = 0.030 adjusted weight = 0.048 neff = 514.32
config 115/141=[ 1.50 5.25] weight = 0.147 adjusted weight = 0.232 neff = 570.80
config 116/141=[ -1.50 5.25] weight = 0.006 adjusted weight = 0.009 neff = 675.38
config 117/141=[ 2.25 5.25] weight = 0.082 adjusted weight = 0.138 neff = 545.95
config 118/141=[ 3.75 4.50] weight = 0.006 adjusted weight = 0.011 neff = 490.97
config 119/141=[ 0.00 6.00] weight = 0.041 adjusted weight = 0.072 neff = 631.61
config 120/141=[ 3.00 5.25] weight = 0.029 adjusted weight = 0.053 neff = 521.65
config 121/141=[ 0.75 6.00] weight = 0.082 adjusted weight = 0.145 neff = 605.37
config 122/141=[ -0.75 6.00] weight = 0.011 adjusted weight = 0.020 neff = 658.32
config 123/141=[ 1.50 6.00] weight = 0.093 adjusted weight = 0.171 neff = 579.62
config 124/141=[ 2.25 6.00] weight = 0.063 adjusted weight = 0.122 neff = 554.41
config 125/141=[ 3.75 5.25] weight = 0.006 adjusted weight = 0.013 neff = 498.01
config 126/141=[ 3.00 6.00] weight = 0.025 adjusted weight = 0.054 neff = 529.78
config 127/141=[ 0.00 6.75] weight = 0.017 adjusted weight = 0.034 neff = 641.53
config 128/141=[ -0.75 6.75] weight = 0.004 adjusted weight = 0.008 neff = 668.45
config 129/141=[ 0.75 6.75] weight = 0.040 adjusted weight = 0.083 neff = 615.03
config 130/141=[ 1.50 6.75] weight = 0.055 adjusted weight = 0.120 neff = 588.98
config 131/141=[ 3.75 6.00] weight = 0.006 adjusted weight = 0.015 neff = 505.76
config 132/141=[ 2.25 6.75] weight = 0.044 adjusted weight = 0.101 neff = 563.46
config 133/141=[ 3.00 6.75] weight = 0.021 adjusted weight = 0.052 neff = 538.50
config 134/141=[ 0.00 7.50] weight = 0.006 adjusted weight = 0.015 neff = 651.86
config 135/141=[ 0.75 7.50] weight = 0.018 adjusted weight = 0.046 neff = 625.10
config 136/141=[ 1.50 7.50] weight = 0.026 adjusted weight = 0.068 neff = 599.01
config 137/141=[ 3.75 6.75] weight = 0.006 adjusted weight = 0.016 neff = 514.22
config 138/141=[ 2.25 7.50] weight = 0.029 adjusted weight = 0.081 neff = 572.98
config 139/141=[ 3.00 7.50] weight = 0.016 adjusted weight = 0.050 neff = 547.71
config 140/141=[ 3.75 7.50] weight = 0.006 adjusted weight = 0.019 neff = 523.04
Done.
Expected effective number of parameters: 581.664(35.714), eqv.#replicates: 5.233
DIC:
Mean of Deviance................. 3229.98
Deviance at Mean................. 2720.2
Effective number of parameters... 509.777
DIC.............................. 3739.76
Marginal likelihood: Integration -1655.593485 Gaussian-approx -1656.710088
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d376b6b1ae/Model.ini]
Preparations : 0.104 seconds
Approx inference: 426.235 seconds [0.1|0.0|3.2|87.7|9.0]%
Output : 0.540 seconds
---------------------------------
Total : 426.879 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3b318666] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d313104ce2]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d313279335]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d313104ce2]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 1, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 1, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 2, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 2, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 1, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 1, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 1, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 1, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33e29ee6b] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31b30a368]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d331cd6775]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d332e3d2af]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3606e9847] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d37ccf8ec6] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d31ea6a92e] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d34fad1aba] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36db5d233] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d33bfb4a8a] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d36edac8c9] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d35db43cfa] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/data.files/filee1d3640f7125] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7ff549d13d60
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -2188.242692 fn= 1 theta= 4.000000 3.990000 range=[-2.428 4.170]
max.logdens= -2188.220423 fn= 3 theta= 3.990000 4.000000 range=[-2.427 4.167]
max.logdens= -2170.040580 fn= 5 theta= 3.213073 3.382954 range=[-2.441 4.377]
max.logdens= -2169.815129 fn= 7 theta= 3.203073 3.382954 range=[-2.441 4.378]
max.logdens= -2157.315592 fn= 11 theta= 2.858956 3.105283 range=[-2.439 4.471]
max.logdens= -2157.003820 fn= 12 theta= 2.848956 3.105283 range=[-2.438 4.471]
max.logdens= -2139.904746 fn= 16 theta= 2.487955 2.814374 range=[-2.428 4.564]
max.logdens= -2139.763800 fn= 17 theta= 2.487955 2.804374 range=[-2.429 4.566]
max.logdens= -2139.481098 fn= 19 theta= 2.477955 2.814374 range=[-2.427 4.565]
max.logdens= -2114.590941 fn= 21 theta= 2.070713 2.487206 range=[-2.411 4.669]
max.logdens= -2114.026810 fn= 23 theta= 2.060713 2.487206 range=[-2.410 4.670]
max.logdens= -2081.077896 fn= 26 theta= 1.620958 2.134543 range=[-2.389 4.801]
max.logdens= -2080.927095 fn= 27 theta= 1.620958 2.124543 range=[-2.390 4.802]
max.logdens= -2080.393461 fn= 28 theta= 1.610958 2.134543 range=[-2.388 4.803]
max.logdens= -2045.906678 fn= 31 theta= 1.182436 1.790689 range=[-2.359 4.974]
max.logdens= -2045.776613 fn= 32 theta= 1.182436 1.780689 range=[-2.359 4.975]
max.logdens= -2045.213237 fn= 33 theta= 1.172436 1.790689 range=[-2.358 4.977]
max.logdens= -2019.697005 fn= 36 theta= 0.816819 1.504001 range=[-2.323 5.153]
max.logdens= -2019.608314 fn= 37 theta= 0.816819 1.494001 range=[-2.323 5.154]
max.logdens= -2019.130390 fn= 39 theta= 0.806819 1.504001 range=[-2.322 5.158]
max.logdens= -2005.703451 fn= 41 theta= 0.556518 1.299894 range=[-2.299 5.293]
max.logdens= -2005.309474 fn= 42 theta= 0.546518 1.299894 range=[-2.298 5.298]
max.logdens= -1998.449143 fn= 46 theta= 0.335229 1.126376 range=[-2.285 5.415]
max.logdens= -1998.251462 fn= 47 theta= 0.325229 1.126376 range=[-2.285 5.420]
max.logdens= -1996.538514 fn= 51 theta= 0.125004 0.961534 range=[-2.283 5.532]
max.logdens= -1996.521163 fn= 52 theta= 0.135004 0.961534 range=[-2.282 5.527]
max.logdens= -1996.519590 fn= 55 theta= 0.125004 0.971534 range=[-2.283 5.531]
max.logdens= -1996.495905 fn= 56 theta= 0.154712 0.984829 range=[-2.282 5.515]
max.logdens= -1996.495506 fn= 58 theta= 0.154712 0.974829 range=[-2.282 5.516]
max.logdens= -1996.476202 fn= 59 theta= 0.144712 0.984829 range=[-2.282 5.520]
max.logdens= -1996.467711 fn= 60 theta= 0.154712 0.994829 range=[-2.282 5.514]
Iter=1 |grad|=1.78 |x-x.old|=3.46 |f-f.old|=192
max.logdens= -1996.465199 fn= 65 theta= 0.134583 0.994567 range=[-2.283 5.524]
max.logdens= -1996.446547 fn= 67 theta= 0.144583 1.004567 range=[-2.282 5.518]
max.logdens= -1996.441241 fn= 72 theta= 0.140813 1.008192 range=[-2.283 5.520]
max.logdens= -1996.438761 fn= 77 theta= 0.138713 1.010210 range=[-2.283 5.521]
max.logdens= -1996.437184 fn= 82 theta= 0.137239 1.011628 range=[-2.283 5.521]
max.logdens= -1996.436312 fn= 87 theta= 0.136133 1.012690 range=[-2.283 5.522]
max.logdens= -1996.435543 fn= 92 theta= 0.135260 1.013530 range=[-2.283 5.522]
max.logdens= -1996.434957 fn= 97 theta= 0.134430 1.014328 range=[-2.283 5.522]
max.logdens= -1996.434518 fn= 102 theta= 0.133642 1.015085 range=[-2.283 5.523]
max.logdens= -1996.434150 fn= 107 theta= 0.132894 1.015805 range=[-2.283 5.523]
max.logdens= -1996.433722 fn= 112 theta= 0.132182 1.016489 range=[-2.283 5.523]
max.logdens= -1996.433561 fn= 117 theta= 0.131507 1.017139 range=[-2.283 5.523]
max.logdens= -1996.433203 fn= 122 theta= 0.130865 1.017756 range=[-2.283 5.524]
Iter=2 |grad|=1.89 |x-x.old|=0.0234 |f-f.old|=0.0489
max.logdens= -1996.361840 fn= 123 theta= 0.128360 1.076268 range=[-2.283 5.519]
max.logdens= -1996.358960 fn= 126 theta= 0.138360 1.076268 range=[-2.283 5.514]
max.logdens= -1996.350567 fn= 127 theta= 0.128360 1.086268 range=[-2.284 5.518]
max.logdens= -1996.296371 fn= 128 theta= 0.125409 1.156979 range=[-2.284 5.511]
max.logdens= -1996.289097 fn= 132 theta= 0.125409 1.166979 range=[-2.284 5.510]
max.logdens= -1996.266029 fn= 133 theta= 0.122458 1.237690 range=[-2.285 5.501]
max.logdens= -1996.265194 fn= 135 theta= 0.122458 1.227690 range=[-2.285 5.503]
max.logdens= -1996.263313 fn= 137 theta= 0.122458 1.247690 range=[-2.285 5.500]
Iter=3 |grad|=0.119 |x-x.old|=0.163 |f-f.old|=0.181
max.logdens= -1996.225117 fn= 141 theta= 0.122370 1.237779 range=[-2.285 5.501]
Iter=4 |grad|=0.116 |x-x.old|=8.84e-05(pass) |f-f.old|=0.00286 Reached numerical limit!
Number of function evaluations = 155
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
140.864260 12.672222
12.672222 17.240684
Eigenvectors of the Hessian
0.994893 -0.100933
0.100933 0.994893
Eigenvalues of the Hessian
142.149876
15.955068
StDev/Correlation matrix (scaled inverse Hessian)
0.087188 -0.257143
0.249217
Compute corrected stdev for theta[0]: negative 1.108367 positive 1.151502
Compute corrected stdev for theta[1]: negative 1.447844 positive 1.905988
max.logdens= -1996.263259 fn= 169 theta= 0.122370 1.237779 range=[-2.285 5.501]
config 0=[ 0.75 0.00] log(rel.dens)=-0.39, [0] accept, compute, 10.19s
config 1=[ 0.00 0.00] log(rel.dens)=-0.12, [1] accept, compute, 10.22s
config 2=[ -0.75 0.00] log(rel.dens)=-0.42, [2] accept, compute, 10.22s
config 3=[ 0.00 -0.75] log(rel.dens)=-0.18, [3] accept, compute, 10.26s
config 4=[ 0.00 0.75] log(rel.dens)=-0.14, [0] accept, compute, 10.42s
config 5=[ 0.75 -0.75] log(rel.dens)=-0.41, [3] accept, compute, 10.36s
config 6=[ -0.75 -0.75] log(rel.dens)=-0.34, [2] accept, compute, 10.41s
config 7=[ -0.75 0.75] log(rel.dens)=-0.41, [1] accept, compute, 10.52s
config 8=[ 0.75 0.75] log(rel.dens)=-0.32, [3] accept, compute, 10.06s
config 9=[ -1.50 0.00] log(rel.dens)=-1.00, [2] accept, compute, 10.05s
config 10=[ 0.00 -1.50] log(rel.dens)=-0.62, [0] accept, compute, 10.09s
config 11=[ 1.50 0.00] log(rel.dens)=-0.86, [1] accept, compute, 10.07s
config 12=[ -0.75 1.50] log(rel.dens)=-0.67, [2] accept, compute, 9.98s
config 13=[ 0.00 1.50] log(rel.dens)=-0.34, [3] accept, compute, 10.01s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.72, [0] accept, compute, 10.03s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.65, [1] accept, compute, 10.14s
config 16=[ -1.50 -0.75] log(rel.dens)=-0.97, [3] accept, compute, 10.20s
config 17=[ 0.75 1.50] log(rel.dens)=-0.39, [2] accept, compute, 10.29s
config 18=[ 1.50 -0.75] log(rel.dens)=-1.06, [0] accept, compute, 10.21s
config 19=[ -1.50 0.75] log(rel.dens)=-1.04, [1] accept, compute, 10.40s
config 20=[ 1.50 1.50] log(rel.dens)=-1.15, [0] accept, compute, 10.45s
config 21=[ -1.50 -1.50] log(rel.dens)=-1.29, [2] accept, compute, 10.52s
config 22=[ 1.50 0.75] log(rel.dens)=-0.87, [3] accept, compute, 10.67s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.27, [1] accept, compute, 10.74s
config 24=[ -1.50 1.50] log(rel.dens)=-1.36, [0] accept, compute, 10.50s
config 25=[ 2.25 0.00] log(rel.dens)=-1.97, [3] accept, compute, 10.46s
config 26=[ 0.00 -2.25] log(rel.dens)=-1.02, [2] accept, compute, 10.53s
config 27=[ -2.25 0.00] log(rel.dens)=-2.08, [1] accept, compute, 10.61s
config 28=[ 0.00 2.25] log(rel.dens)=-0.55, [0] accept, compute, 10.52s
config 29=[ -0.75 -2.25] log(rel.dens)=-1.31, [2] accept, compute, 10.42s
config 30=[ 2.25 0.75] log(rel.dens)=-1.93, [3] accept, compute, 10.55s
config 31=[ 0.75 -2.25] log(rel.dens)=-1.20, [1] accept, compute, 10.60s
config 32=[ 2.25 -0.75] log(rel.dens)=-2.00, [2] accept, compute, 10.49s
config 33=[ -2.25 -0.75] log(rel.dens)=-2.09, [0] accept, compute, 10.50s
config 34=[ -0.75 2.25] log(rel.dens)=-0.94, [3] accept, compute, 10.58s
config 35=[ -2.25 0.75] log(rel.dens)=-2.28, [1] accept, compute, 10.57s
config 36=[ 0.75 2.25] log(rel.dens)=-0.65, [2] accept, compute, 11.16s
config 37=[ -2.25 -1.50] log(rel.dens)=-2.39, [0] accept, compute, 11.16s
config 38=[ 2.25 -1.50] log(rel.dens)=-2.24, [3] accept, compute, 11.30s
config 39=[ -1.50 -2.25] log(rel.dens)=-1.88, [1] accept, compute, 11.35s
config 40=[ -1.50 2.25] log(rel.dens)=-1.82, [0] accept, compute, 10.78s
config 41=[ 2.25 1.50] log(rel.dens)=-2.01, [2] accept, compute, 10.89s
config 42=[ 1.50 -2.25] log(rel.dens)=-1.84, [3] accept, compute, 10.87s
config 43=[ -2.25 1.50] log(rel.dens)=-2.66, [1] accept, compute, 10.71s
config 44=[ 1.50 2.25] log(rel.dens)=-1.20, [0] accept, compute, 10.31s
config 45=[ 0.00 3.00] log(rel.dens)=-0.97, [2] accept, compute, 10.45s
config 46=[ 3.00 0.00] log(rel.dens)=-3.30, [3] accept, compute, 10.41s
config 47=[ 0.00 -3.00] log(rel.dens)=-1.89, [1] accept, compute, 10.34s
config 48=[ -3.00 0.00] log(rel.dens)=-3.75, [0] accept, compute, 10.56s
config 49=[ -0.75 -3.00] log(rel.dens)=-2.16, [2] accept, compute, 10.51s
config 50=[ -3.00 0.75] log(rel.dens)=-4.06, [3] accept, compute, 10.48s
config 51=[ 3.00 0.75] log(rel.dens)=-3.34, [1] accept, compute, 10.41s
config 52=[ 0.75 -3.00] log(rel.dens)=-2.23, [2] accept, compute, 10.15s
config 53=[ -0.75 3.00] log(rel.dens)=-1.43, [0] accept, compute, 10.37s
config 54=[ 0.75 3.00] log(rel.dens)=-1.00, [3] accept, compute, 10.26s
config 55=[ 3.00 -0.75] log(rel.dens)=-3.44, [1] accept, compute, 10.20s
config 56=[ 2.25 2.25] log(rel.dens)=-2.19, [0] accept, compute, 10.26s
config 57=[ -3.00 -0.75] log(rel.dens)=-3.71, [2] accept, compute, 10.44s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.65, [3] accept, compute, 10.47s
config 59=[ -2.25 -2.25] log(rel.dens)=-2.99, [1] accept, compute, 10.66s
config 60=[ -2.25 2.25] log(rel.dens)=-3.23, [0] accept, compute, 10.23s
config 61=[ -1.50 3.00] log(rel.dens)=-2.40, [2] accept, compute, 10.34s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.96, [3] accept, compute, 10.33s
config 63=[ 1.50 -3.00] log(rel.dens)=-2.48, [1] accept, compute, 10.22s
config 64=[ 3.00 1.50] log(rel.dens)=-3.45, [0] accept, compute, 9.77s
config 65=[ 1.50 3.00] log(rel.dens)=-1.49, [2] accept, compute, 10.24s
config 66=[ -3.00 1.50] log(rel.dens)=-4.50, [3] accept, compute, 10.11s
config 67=[ -1.50 -3.00] log(rel.dens)=-2.83, [1] accept, compute, 10.02s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.55, [0] accept, compute, 10.08s
config 69=[ -2.25 -3.00] log(rel.dens)=-3.93, [2] accept, compute, 10.04s
config 70=[ 2.25 -3.00] log(rel.dens)=-3.31, [3] accept, compute, 10.01s
config 71=[ 0.00 -3.75] log(rel.dens)=-3.34, [1] accept, compute, 10.04s
config 72=[ -3.00 2.25] log(rel.dens)=-5.21, [0] accept, compute, 10.15s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.89, [2] accept, compute, 10.18s
config 74=[ 3.00 2.25] log(rel.dens)=-3.59, [3] accept, compute, 10.23s
config 75=[ -3.00 -2.25] log(rel.dens)=-4.50, [1] accept, compute, 10.28s
config 76=[ 2.25 3.00] log(rel.dens)=-2.44, [0] accept, compute, 10.82s
config 77=[ 0.00 3.75] log(rel.dens)=-1.47, [2] accept, compute, 10.78s
config 78=[ -2.25 3.00] log(rel.dens)=-3.93, [3] accept, compute, 10.79s
config 79=[ 3.75 0.00] log(rel.dens)=-5.10, [1] accept, compute, 10.99s
config 80=[ -3.75 0.00] log(rel.dens)=-5.97, [0] accept, compute, 9.99s
config 81=[ -0.75 3.75] log(rel.dens)=-2.10, [2] accept, compute, 9.89s
config 82=[ 0.75 -3.75] log(rel.dens)=-3.17, [3] accept, compute, 10.13s
config 83=[ 3.75 0.75] log(rel.dens)=-5.13, [1] accept, compute, 10.06s
config 84=[ -3.75 0.75] log(rel.dens)=-6.29, reject, 0.41s
config 85=[ 3.75 -0.75] log(rel.dens)=-5.13, [0] accept, compute, 10.18s
config 86=[ 0.75 3.75] log(rel.dens)=-1.41, [2] accept, compute, 10.14s
config 87=[ -3.75 -0.75] log(rel.dens)=-5.82, [3] accept, compute, 10.05s
config 88=[ -0.75 -3.75] log(rel.dens)=-3.46, [1] accept, compute, 10.22s
config 89=[ -1.50 3.75] log(rel.dens)=-3.14, [0] accept, compute, 10.00s
config 90=[ 3.75 1.50] log(rel.dens)=-5.23, [2] accept, compute, 9.98s
config 91=[ -1.50 -3.75] log(rel.dens)=-4.18, [3] accept, compute, 10.05s
config 92=[ 1.50 -3.75] log(rel.dens)=-3.53, [1] accept, compute, 10.05s
config 93=[ 1.50 3.75] log(rel.dens)=-1.83, [0] accept, compute, 10.21s
config 94=[ 3.75 -1.50] log(rel.dens)=-5.18, [2] accept, compute, 10.37s
config 95=[ -3.75 -1.50] log(rel.dens)=-5.99, [3] accept, compute, 10.10s
config 96=[ -3.00 -3.00] log(rel.dens)=-5.45, [1] accept, compute, 10.10s
config 97=[ 3.00 -3.00] log(rel.dens)=-4.42, [0] accept, compute, 9.97s
config 98=[ 3.00 3.00] log(rel.dens)=-3.79, [2] accept, compute, 10.05s
config 99=[ -3.00 3.00] log(rel.dens)=-5.95, [3] accept, compute, 10.08s
config 100=[ 2.25 -3.75] log(rel.dens)=-4.23, [1] accept, compute, 9.98s
config 101=[ 2.25 3.75] log(rel.dens)=-2.71, [0] accept, compute, 10.36s
config 102=[ -3.75 -2.25] log(rel.dens)=-6.56, reject, 0.30s
config 103=[ -2.25 -3.75] log(rel.dens)=-5.35, [2] accept, compute, 10.39s
config 104=[ 3.75 -2.25] log(rel.dens)=-5.48, [3] accept, compute, 10.25s
config 105=[ -4.50 0.00] log(rel.dens)=-8.65, reject, 0.45s
config 106=[ 3.75 2.25] log(rel.dens)=-5.37, [1] accept, compute, 10.43s
config 107=[ 4.50 0.00] log(rel.dens)=-7.14, reject, 0.35s
config 108=[ -2.25 3.75] log(rel.dens)=-4.71, [0] accept, compute, 10.43s
config 109=[ 0.00 4.50] log(rel.dens)=-2.04, [2] accept, compute, 10.68s
config 110=[ 0.00 -4.50] log(rel.dens)=-4.81, [3] accept, compute, 10.47s
config 111=[ 0.75 -4.50] log(rel.dens)=-4.74, [1] accept, compute, 10.36s
config 112=[ -0.75 4.50] log(rel.dens)=-2.68, [0] accept, compute, 10.23s
config 113=[ -1.50 -4.50] log(rel.dens)=-6.03, reject, 0.31s
config 114=[ 0.75 4.50] log(rel.dens)=-1.95, [2] accept, compute, 10.31s
config 115=[ -0.75 -4.50] log(rel.dens)=-5.28, [3] accept, compute, 10.30s
config 116=[ -1.50 4.50] log(rel.dens)=-3.89, [1] accept, compute, 10.30s
config 117=[ -3.00 -3.75] log(rel.dens)=-6.85, reject, 0.37s
config 118=[ 1.50 4.50] log(rel.dens)=-2.24, [0] accept, compute, 10.45s
config 119=[ -3.00 3.75] log(rel.dens)=-6.88, reject, 0.32s
config 120=[ 1.50 -4.50] log(rel.dens)=-4.97, [2] accept, compute, 10.50s
config 121=[ 3.75 -3.00] log(rel.dens)=-5.83, [3] accept, compute, 10.38s
config 122=[ 3.00 3.75] log(rel.dens)=-4.06, [1] accept, compute, 10.39s
config 123=[ 3.75 3.00] log(rel.dens)=-5.59, [0] accept, compute, 10.66s
config 124=[ 3.00 -3.75] log(rel.dens)=-5.20, [2] accept, compute, 10.70s
config 125=[ 2.25 -4.50] log(rel.dens)=-5.51, [3] accept, compute, 10.66s
config 126=[ 0.00 -5.25] log(rel.dens)=-7.01, reject, 0.42s
config 127=[ -2.25 4.50] log(rel.dens)=-5.64, [1] accept, compute, 10.64s
config 128=[ 2.25 4.50] log(rel.dens)=-3.02, [0] accept, compute, 10.27s
config 129=[ 0.00 5.25] log(rel.dens)=-2.67, [2] accept, compute, 10.18s
config 130=[ 3.75 -3.75] log(rel.dens)=-6.49, reject, 0.28s
config 131=[ 3.00 -4.50] log(rel.dens)=-6.46, reject, 0.26s
config 132=[ 3.75 3.75] log(rel.dens)=-5.77, [3] accept, compute, 10.15s
config 133=[ -0.75 5.25] log(rel.dens)=-3.41, [1] accept, compute, 10.04s
config 134=[ 0.75 5.25] log(rel.dens)=-2.39, [0] accept, compute, 10.69s
config 135=[ 3.00 4.50] log(rel.dens)=-4.28, [2] accept, compute, 10.24s
config 136=[ -2.25 5.25] log(rel.dens)=-6.61, reject, 0.31s
config 137=[ 1.50 5.25] log(rel.dens)=-2.64, [3] accept, compute, 10.34s
config 138=[ -1.50 5.25] log(rel.dens)=-4.81, [1] accept, compute, 10.24s
config 139=[ 2.25 5.25] log(rel.dens)=-3.36, [0] accept, compute, 14.26s
config 140=[ 0.00 6.00] log(rel.dens)=-3.31, [3] accept, compute, 14.19s
config 141=[ 3.75 4.50] log(rel.dens)=-5.97, [2] accept, compute, 14.24s
config 142=[ 3.00 5.25] log(rel.dens)=-4.55, [1] accept, compute, 14.08s
config 143=[ 0.75 6.00] log(rel.dens)=-2.94, [0] accept, compute, 10.99s
config 144=[ -0.75 6.00] log(rel.dens)=-4.28, [3] accept, compute, 10.88s
config 145=[ 1.50 6.00] log(rel.dens)=-3.09, [2] accept, compute, 11.08s
config 146=[ 3.75 5.25] log(rel.dens)=-6.15, reject, 0.31s
config 147=[ -1.50 6.00] log(rel.dens)=-5.64, [1] accept, compute, 11.32s
config 148=[ 2.25 6.00] log(rel.dens)=-3.72, [0] accept, compute, 10.52s
config 149=[ 0.00 6.75] log(rel.dens)=-4.00, [3] accept, compute, 10.32s
config 150=[ 3.00 6.00] log(rel.dens)=-4.81, [2] accept, compute, 10.50s
config 151=[ -1.50 6.75] log(rel.dens)=-6.57, reject, 0.32s
config 152=[ -0.75 6.75] log(rel.dens)=-5.07, [1] accept, compute, 10.42s
config 153=[ 0.75 6.75] log(rel.dens)=-3.52, [0] accept, compute, 10.63s
config 154=[ 1.50 6.75] log(rel.dens)=-3.55, [2] accept, compute, 10.73s
config 155=[ 2.25 6.75] log(rel.dens)=-4.09, [3] accept, compute, 10.71s
config 156=[ 3.00 6.75] log(rel.dens)=-5.09, [1] accept, compute, 10.58s
config 157=[ 0.00 7.50] log(rel.dens)=-4.83, [0] accept, compute, 10.37s
config 158=[ -0.75 7.50] log(rel.dens)=-5.84, [2] accept, compute, 10.59s
config 159=[ 0.75 7.50] log(rel.dens)=-4.10, [3] accept, compute, 10.48s
config 160=[ 1.50 7.50] log(rel.dens)=-4.02, [1] accept, compute, 10.55s
config 161=[ 2.25 7.50] log(rel.dens)=-4.45, [0] accept, compute, 10.36s
config 162=[ -0.75 8.25] log(rel.dens)=-6.70, reject, 0.36s
config 163=[ 3.00 7.50] log(rel.dens)=-5.35, [2] accept, compute, 10.37s
config 164=[ 0.00 8.25] log(rel.dens)=-5.55, [3] accept, compute, 10.29s
config 165=[ 0.75 8.25] log(rel.dens)=-4.82, [1] accept, compute, 10.25s
config 166=[ 0.00 9.00] log(rel.dens)=-6.27, reject, 0.23s
config 167=[ 1.50 8.25] log(rel.dens)=-4.49, [0] accept, compute, 8.86s
config 168=[ 2.25 8.25] log(rel.dens)=-4.91, [2] accept, compute, 8.66s
config 169=[ 3.00 8.25] log(rel.dens)=-5.60, [3] accept, compute, 8.70s
Combine the densities with relative weights:
config 0/155=[ 0.75 0.00] weight = 0.764 adjusted weight = 0.670 neff = 686.02
config 1/155=[ 0.00 0.00] weight = 1.000 adjusted weight = 0.866 neff = 709.40
config 2/155=[ -0.75 0.00] weight = 0.738 adjusted weight = 0.648 neff = 733.29
config 3/155=[ 0.00 -0.75] weight = 0.936 adjusted weight = 0.821 neff = 709.17
config 4/155=[ 0.00 0.75] weight = 0.978 adjusted weight = 0.858 neff = 710.70
config 5/155=[ 0.75 -0.75] weight = 0.747 adjusted weight = 0.664 neff = 686.12
config 6/155=[ -0.75 -0.75] weight = 0.799 adjusted weight = 0.710 neff = 732.52
config 7/155=[ -0.75 0.75] weight = 0.750 adjusted weight = 0.666 neff = 734.85
config 8/155=[ 0.75 0.75] weight = 0.819 adjusted weight = 0.727 neff = 686.89
config 9/155=[ -1.50 0.00] weight = 0.412 adjusted weight = 0.376 neff = 757.26
config 10/155=[ 0.00 -1.50] weight = 0.605 adjusted weight = 0.551 neff = 710.54
config 11/155=[ 1.50 0.00] weight = 0.475 adjusted weight = 0.433 neff = 662.74
config 12/155=[ -0.75 1.50] weight = 0.578 adjusted weight = 0.533 neff = 737.55
config 13/155=[ 0.00 1.50] weight = 0.802 adjusted weight = 0.731 neff = 713.08
config 14/155=[ 0.75 -1.50] weight = 0.548 adjusted weight = 0.506 neff = 687.77
config 15/155=[ -0.75 -1.50] weight = 0.587 adjusted weight = 0.542 neff = 733.28
config 16/155=[ -1.50 -0.75] weight = 0.425 adjusted weight = 0.392 neff = 756.22
config 17/155=[ 0.75 1.50] weight = 0.758 adjusted weight = 0.700 neff = 688.83
config 18/155=[ 1.50 -0.75] weight = 0.388 adjusted weight = 0.359 neff = 663.49
config 19/155=[ -1.50 0.75] weight = 0.397 adjusted weight = 0.366 neff = 759.15
config 20/155=[ 1.50 1.50] weight = 0.356 adjusted weight = 0.341 neff = 665.31
config 21/155=[ -1.50 -1.50] weight = 0.311 adjusted weight = 0.298 neff = 756.59
config 22/155=[ 1.50 0.75] weight = 0.469 adjusted weight = 0.433 neff = 663.36
config 23/155=[ 1.50 -1.50] weight = 0.317 adjusted weight = 0.304 neff = 665.48
config 24/155=[ -1.50 1.50] weight = 0.289 adjusted weight = 0.278 neff = 762.14
config 25/155=[ 2.25 0.00] weight = 0.156 adjusted weight = 0.152 neff = 640.20
config 26/155=[ 0.00 -2.25] weight = 0.405 adjusted weight = 0.393 neff = 713.08
config 27/155=[ -2.25 0.00] weight = 0.141 adjusted weight = 0.137 neff = 781.51
config 28/155=[ 0.00 2.25] weight = 0.647 adjusted weight = 0.628 neff = 716.21
config 29/155=[ -0.75 -2.25] weight = 0.305 adjusted weight = 0.300 neff = 735.67
config 30/155=[ 2.25 0.75] weight = 0.164 adjusted weight = 0.161 neff = 640.37
config 31/155=[ 0.75 -2.25] weight = 0.339 adjusted weight = 0.333 neff = 690.96
config 32/155=[ 2.25 -0.75] weight = 0.153 adjusted weight = 0.150 neff = 641.15
config 33/155=[ -2.25 -0.75] weight = 0.139 adjusted weight = 0.136 neff = 780.23
config 34/155=[ -0.75 2.25] weight = 0.440 adjusted weight = 0.433 neff = 740.94
config 35/155=[ -2.25 0.75] weight = 0.115 adjusted weight = 0.113 neff = 783.86
config 36/155=[ 0.75 2.25] weight = 0.587 adjusted weight = 0.577 neff = 691.80
config 37/155=[ -2.25 -1.50] weight = 0.103 adjusted weight = 0.105 neff = 780.22
config 38/155=[ 2.25 -1.50] weight = 0.120 adjusted weight = 0.123 neff = 643.69
config 39/155=[ -1.50 -2.25] weight = 0.171 adjusted weight = 0.175 neff = 758.43
config 40/155=[ -1.50 2.25] weight = 0.183 adjusted weight = 0.187 neff = 765.94
config 41/155=[ 2.25 1.50] weight = 0.150 adjusted weight = 0.153 neff = 641.72
config 42/155=[ 1.50 -2.25] weight = 0.179 adjusted weight = 0.183 neff = 669.35
config 43/155=[ -2.25 1.50] weight = 0.078 adjusted weight = 0.080 neff = 787.12
config 44/155=[ 1.50 2.25] weight = 0.337 adjusted weight = 0.344 neff = 667.75
config 45/155=[ 0.00 3.00] weight = 0.428 adjusted weight = 0.452 neff = 720.23
config 46/155=[ 3.00 0.00] weight = 0.041 adjusted weight = 0.044 neff = 617.89
config 47/155=[ 0.00 -3.00] weight = 0.169 adjusted weight = 0.179 neff = 717.65
config 48/155=[ -3.00 0.00] weight = 0.026 adjusted weight = 0.028 neff = 806.13
config 49/155=[ -0.75 -3.00] weight = 0.130 adjusted weight = 0.139 neff = 739.63
config 50/155=[ -3.00 0.75] weight = 0.019 adjusted weight = 0.021 neff = 808.82
config 51/155=[ 3.00 0.75] weight = 0.040 adjusted weight = 0.043 neff = 617.77
config 52/155=[ 0.75 -3.00] weight = 0.121 adjusted weight = 0.129 neff = 696.35
config 53/155=[ -0.75 3.00] weight = 0.269 adjusted weight = 0.288 neff = 745.21
config 54/155=[ 0.75 3.00] weight = 0.416 adjusted weight = 0.445 neff = 695.56
config 55/155=[ 3.00 -0.75] weight = 0.036 adjusted weight = 0.039 neff = 619.46
config 56/155=[ 2.25 2.25] weight = 0.126 adjusted weight = 0.137 neff = 644.09
config 57/155=[ -3.00 -0.75] weight = 0.028 adjusted weight = 0.030 neff = 804.50
config 58/155=[ 2.25 -2.25] weight = 0.079 adjusted weight = 0.086 neff = 647.93
config 59/155=[ -2.25 -2.25] weight = 0.057 adjusted weight = 0.062 neff = 781.60
config 60/155=[ -2.25 2.25] weight = 0.045 adjusted weight = 0.048 neff = 791.20
config 61/155=[ -1.50 3.00] weight = 0.102 adjusted weight = 0.113 neff = 770.45
config 62/155=[ -3.00 -1.50] weight = 0.021 adjusted weight = 0.024 neff = 804.08
config 63/155=[ 1.50 -3.00] weight = 0.094 adjusted weight = 0.104 neff = 674.86
config 64/155=[ 3.00 1.50] weight = 0.036 adjusted weight = 0.040 neff = 618.83
config 65/155=[ 1.50 3.00] weight = 0.254 adjusted weight = 0.283 neff = 671.23
config 66/155=[ -3.00 1.50] weight = 0.013 adjusted weight = 0.014 neff = 812.31
config 67/155=[ -1.50 -3.00] weight = 0.067 adjusted weight = 0.074 neff = 761.95
config 68/155=[ 3.00 -1.50] weight = 0.032 adjusted weight = 0.036 neff = 622.35
config 69/155=[ -2.25 -3.00] weight = 0.022 adjusted weight = 0.026 neff = 784.61
config 70/155=[ 2.25 -3.00] weight = 0.041 adjusted weight = 0.048 neff = 654.13
config 71/155=[ 0.00 -3.75] weight = 0.040 adjusted weight = 0.047 neff = 724.53
config 72/155=[ -3.00 2.25] weight = 0.006 adjusted weight = 0.007 neff = 816.68
config 73/155=[ 3.00 -2.25] weight = 0.023 adjusted weight = 0.027 neff = 627.10
config 74/155=[ 3.00 2.25] weight = 0.031 adjusted weight = 0.037 neff = 620.85
config 75/155=[ -3.00 -2.25] weight = 0.012 adjusted weight = 0.015 neff = 805.00
config 76/155=[ 2.25 3.00] weight = 0.098 adjusted weight = 0.116 neff = 647.31
config 77/155=[ 0.00 3.75] weight = 0.258 adjusted weight = 0.303 neff = 724.91
config 78/155=[ -2.25 3.00] weight = 0.022 adjusted weight = 0.026 neff = 795.95
config 79/155=[ 3.75 0.00] weight = 0.007 adjusted weight = 0.008 neff = 596.22
config 80/155=[ -3.75 0.00] weight = 0.003 adjusted weight = 0.003 neff = 830.96
config 81/155=[ -0.75 3.75] weight = 0.138 adjusted weight = 0.165 neff = 750.21
config 82/155=[ 0.75 -3.75] weight = 0.047 adjusted weight = 0.056 neff = 703.24
config 83/155=[ 3.75 0.75] weight = 0.007 adjusted weight = 0.008 neff = 595.68
config 84/155=[ 3.75 -0.75] weight = 0.007 adjusted weight = 0.008 neff = 598.13
config 85/155=[ 0.75 3.75] weight = 0.276 adjusted weight = 0.328 neff = 699.99
config 86/155=[ -3.75 -0.75] weight = 0.003 adjusted weight = 0.004 neff = 828.97
config 87/155=[ -0.75 -3.75] weight = 0.035 adjusted weight = 0.042 neff = 745.64
config 88/155=[ -1.50 3.75] weight = 0.049 adjusted weight = 0.060 neff = 775.61
config 89/155=[ 3.75 1.50] weight = 0.006 adjusted weight = 0.007 neff = 596.34
config 90/155=[ -1.50 -3.75] weight = 0.017 adjusted weight = 0.021 neff = 767.38
config 91/155=[ 1.50 -3.75] weight = 0.033 adjusted weight = 0.041 neff = 682.62
config 92/155=[ 1.50 3.75] weight = 0.181 adjusted weight = 0.223 neff = 675.42
config 93/155=[ 3.75 -1.50] weight = 0.006 adjusted weight = 0.008 neff = 601.48
config 94/155=[ -3.75 -1.50] weight = 0.003 adjusted weight = 0.003 neff = 828.14
config 95/155=[ -3.00 -3.00] weight = 0.005 adjusted weight = 0.006 neff = 807.52
config 96/155=[ 3.00 -3.00] weight = 0.014 adjusted weight = 0.017 neff = 633.79
config 97/155=[ 3.00 3.00] weight = 0.026 adjusted weight = 0.033 neff = 623.75
config 98/155=[ -3.00 3.00] weight = 0.003 adjusted weight = 0.004 neff = 821.55
config 99/155=[ 2.25 -3.75] weight = 0.016 adjusted weight = 0.022 neff = 662.46
config 100/155=[ 2.25 3.75] weight = 0.075 adjusted weight = 0.099 neff = 651.21
config 101/155=[ -2.25 -3.75] weight = 0.005 adjusted weight = 0.007 neff = 789.51
config 102/155=[ 3.75 -2.25] weight = 0.005 adjusted weight = 0.006 neff = 606.79
config 103/155=[ 3.75 2.25] weight = 0.005 adjusted weight = 0.007 neff = 598.07
config 104/155=[ -2.25 3.75] weight = 0.010 adjusted weight = 0.013 neff = 801.22
config 105/155=[ 0.00 4.50] weight = 0.147 adjusted weight = 0.195 neff = 730.14
config 106/155=[ 0.00 -4.50] weight = 0.009 adjusted weight = 0.012 neff = 733.11
config 107/155=[ 0.75 -4.50] weight = 0.010 adjusted weight = 0.013 neff = 712.75
config 108/155=[ -0.75 4.50] weight = 0.077 adjusted weight = 0.103 neff = 755.53
config 109/155=[ 0.75 4.50] weight = 0.160 adjusted weight = 0.216 neff = 705.10
config 110/155=[ -0.75 -4.50] weight = 0.006 adjusted weight = 0.008 neff = 753.92
config 111/155=[ -1.50 4.50] weight = 0.023 adjusted weight = 0.032 neff = 781.20
config 112/155=[ 1.50 4.50] weight = 0.120 adjusted weight = 0.168 neff = 680.23
config 113/155=[ 1.50 -4.50] weight = 0.008 adjusted weight = 0.011 neff = 692.78
config 114/155=[ 3.75 -3.00] weight = 0.003 adjusted weight = 0.005 neff = 613.96
config 115/155=[ 3.00 3.75] weight = 0.019 adjusted weight = 0.028 neff = 627.48
config 116/155=[ 3.75 3.00] weight = 0.004 adjusted weight = 0.006 neff = 600.74
config 117/155=[ 3.00 -3.75] weight = 0.006 adjusted weight = 0.009 neff = 642.72
config 118/155=[ 2.25 -4.50] weight = 0.005 adjusted weight = 0.007 neff = 673.23
config 119/155=[ -2.25 4.50] weight = 0.004 adjusted weight = 0.006 neff = 807.05
config 120/155=[ 2.25 4.50] weight = 0.055 adjusted weight = 0.082 neff = 655.75
config 121/155=[ 0.00 5.25] weight = 0.078 adjusted weight = 0.119 neff = 735.86
config 122/155=[ 3.75 3.75] weight = 0.004 adjusted weight = 0.006 neff = 604.10
config 123/155=[ -0.75 5.25] weight = 0.037 adjusted weight = 0.057 neff = 761.41
config 124/155=[ 0.75 5.25] weight = 0.103 adjusted weight = 0.159 neff = 710.50
config 125/155=[ 3.00 4.50] weight = 0.016 adjusted weight = 0.025 neff = 631.73
config 126/155=[ 1.50 5.25] weight = 0.080 adjusted weight = 0.129 neff = 685.50
config 127/155=[ -1.50 5.25] weight = 0.009 adjusted weight = 0.015 neff = 787.33
config 128/155=[ 2.25 5.25] weight = 0.039 adjusted weight = 0.067 neff = 660.83
config 129/155=[ 0.00 6.00] weight = 0.041 adjusted weight = 0.074 neff = 741.92
config 130/155=[ 3.75 4.50] weight = 0.003 adjusted weight = 0.005 neff = 608.14
config 131/155=[ 3.00 5.25] weight = 0.012 adjusted weight = 0.022 neff = 636.57
config 132/155=[ 0.75 6.00] weight = 0.059 adjusted weight = 0.107 neff = 716.43
config 133/155=[ -0.75 6.00] weight = 0.016 adjusted weight = 0.028 neff = 767.78
config 134/155=[ 1.50 6.00] weight = 0.051 adjusted weight = 0.096 neff = 691.23
config 135/155=[ -1.50 6.00] weight = 0.004 adjusted weight = 0.007 neff = 793.65
config 136/155=[ 2.25 6.00] weight = 0.027 adjusted weight = 0.055 neff = 666.36
config 137/155=[ 0.00 6.75] weight = 0.020 adjusted weight = 0.043 neff = 748.37
config 138/155=[ 3.00 6.00] weight = 0.009 adjusted weight = 0.020 neff = 641.88
config 139/155=[ -0.75 6.75] weight = 0.007 adjusted weight = 0.015 neff = 774.33
config 140/155=[ 0.75 6.75] weight = 0.033 adjusted weight = 0.071 neff = 722.70
config 141/155=[ 1.50 6.75] weight = 0.032 adjusted weight = 0.071 neff = 697.33
config 142/155=[ 2.25 6.75] weight = 0.019 adjusted weight = 0.045 neff = 672.29
config 143/155=[ 3.00 6.75] weight = 0.007 adjusted weight = 0.018 neff = 647.61
config 144/155=[ 0.00 7.50] weight = 0.009 adjusted weight = 0.023 neff = 755.25
config 145/155=[ -0.75 7.50] weight = 0.003 adjusted weight = 0.008 neff = 781.10
config 146/155=[ 0.75 7.50] weight = 0.019 adjusted weight = 0.048 neff = 729.27
config 147/155=[ 1.50 7.50] weight = 0.020 adjusted weight = 0.053 neff = 703.74
config 148/155=[ 2.25 7.50] weight = 0.013 adjusted weight = 0.037 neff = 678.53
config 149/155=[ 3.00 7.50] weight = 0.005 adjusted weight = 0.016 neff = 653.67
config 150/155=[ 0.00 8.25] weight = 0.004 adjusted weight = 0.013 neff = 762.21
config 151/155=[ 0.75 8.25] weight = 0.009 adjusted weight = 0.027 neff = 736.27
config 152/155=[ 1.50 8.25] weight = 0.013 adjusted weight = 0.040 neff = 710.43
config 153/155=[ 2.25 8.25] weight = 0.008 adjusted weight = 0.028 neff = 685.20
config 154/155=[ 3.00 8.25] weight = 0.004 adjusted weight = 0.015 neff = 660.02
Done.
Expected effective number of parameters: 708.731(36.654), eqv.#replicates: 4.295
DIC:
Mean of Deviance................. 3721.87
Deviance at Mean................. 3094.64
Effective number of parameters... 627.229
DIC.............................. 4349.1
Marginal likelihood: Integration -1997.163366 Gaussian-approx -1998.288711
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3513f4dda/Model.ini]
Preparations : 0.092 seconds
Approx inference: 470.532 seconds [0.1|0.0|3.3|86.9|9.7]%
Output : 0.550 seconds
---------------------------------
Total : 471.173 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d362a42e77] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33a52fb2b]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31de7e1f7]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33a52fb2b]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 1, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 1, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 1, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 2, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31e47b704] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3447e0f12]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d32d8adeaa]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d376407723]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d38e6b939] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3638a51bf] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d3dfd05a7] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d35e7e1e1d] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d329eb3262] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d31038d56e] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d33443114] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d371f219b8] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/data.files/filee1d34d76b979] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7ff92b5082b0
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -2345.978436 fn= 1 theta= 4.010000 4.000000 range=[-1.195 4.323]
max.logdens= -2345.694487 fn= 2 theta= 3.990000 4.000000 range=[-1.195 4.323]
max.logdens= -2321.732807 fn= 5 theta= 3.063805 3.648518 range=[-1.206 4.383]
max.logdens= -2321.635603 fn= 6 theta= 3.063805 3.638518 range=[-1.206 4.384]
max.logdens= -2321.347070 fn= 8 theta= 3.053805 3.648518 range=[-1.206 4.383]
max.logdens= -2302.296464 fn= 11 theta= 2.642518 3.490351 range=[-1.215 4.416]
max.logdens= -2302.218539 fn= 12 theta= 2.642518 3.480351 range=[-1.215 4.417]
max.logdens= -2301.773373 fn= 13 theta= 2.632518 3.490351 range=[-1.215 4.416]
max.logdens= -2276.701001 fn= 16 theta= 2.242295 3.340092 range=[-1.227 4.456]
max.logdens= -2276.623308 fn= 17 theta= 2.242295 3.330092 range=[-1.228 4.457]
max.logdens= -2275.991415 fn= 18 theta= 2.232295 3.340092 range=[-1.228 4.456]
max.logdens= -2237.359965 fn= 21 theta= 1.777622 3.165636 range=[-1.251 4.518]
max.logdens= -2237.285261 fn= 22 theta= 1.777622 3.155636 range=[-1.251 4.519]
max.logdens= -2236.434019 fn= 23 theta= 1.767622 3.165636 range=[-1.251 4.519]
max.logdens= -2185.405308 fn= 26 theta= 1.267231 2.974017 range=[-1.292 4.599]
max.logdens= -2185.339803 fn= 27 theta= 1.267231 2.964017 range=[-1.292 4.600]
max.logdens= -2184.360350 fn= 28 theta= 1.257231 2.974017 range=[-1.293 4.600]
max.logdens= -2136.913237 fn= 31 theta= 0.786092 2.793379 range=[-1.351 4.669]
max.logdens= -2136.869300 fn= 32 theta= 0.786092 2.783379 range=[-1.352 4.671]
max.logdens= -2135.993462 fn= 33 theta= 0.776092 2.793379 range=[-1.353 4.670]
max.logdens= -2108.023513 fn= 36 theta= 0.419168 2.655622 range=[-1.414 4.714]
max.logdens= -2108.010068 fn= 37 theta= 0.419168 2.645622 range=[-1.414 4.716]
max.logdens= -2107.396658 fn= 39 theta= 0.409168 2.655622 range=[-1.416 4.715]
max.logdens= -2094.431134 fn= 41 theta= 0.130113 2.547100 range=[-1.476 4.744]
max.logdens= -2094.138579 fn= 43 theta= 0.120113 2.547100 range=[-1.478 4.745]
max.logdens= -2091.469073 fn= 46 theta= -0.144490 2.444004 range=[-1.561 4.770]
max.logdens= -2091.388479 fn= 49 theta= -0.134490 2.444004 range=[-1.558 4.770]
max.logdens= -2091.276980 fn= 51 theta= -0.083913 2.466747 range=[-1.541 4.765]
max.logdens= -2091.213370 fn= 52 theta= -0.083913 2.456747 range=[-1.541 4.766]
max.logdens= -2091.198149 fn= 53 theta= -0.093913 2.466747 range=[-1.544 4.765]
max.logdens= -2091.184800 fn= 55 theta= -0.083913 2.476747 range=[-1.540 4.763]
Iter=1 |grad|=1.47 |x-x.old|=3.08 |f-f.old|=255
max.logdens= -2091.151174 fn= 60 theta= -0.097473 2.519714 range=[-1.544 4.756]
Iter=2 |grad|=3.23 |x-x.old|=0.041 |f-f.old|=0.0896
max.logdens= -2091.054684 fn= 62 theta= -0.108094 2.645056 range=[-1.544 4.735]
max.logdens= -2091.036954 fn= 65 theta= -0.098094 2.645056 range=[-1.541 4.735]
max.logdens= -2090.360672 fn= 67 theta= -0.113684 3.773135 range=[-1.528 4.558]
max.logdens= -2090.284239 fn= 68 theta= -0.113684 3.763135 range=[-1.528 4.560]
max.logdens= -2090.272200 fn= 70 theta= -0.103684 3.773135 range=[-1.524 4.559]
max.logdens= -2090.270507 fn= 71 theta= -0.113684 3.783135 range=[-1.528 4.557]
max.logdens= -2090.034312 fn= 73 theta= -0.116199 4.280770 range=[-1.523 4.500]
max.logdens= -2089.967373 fn= 74 theta= -0.116199 4.270770 range=[-1.523 4.501]
max.logdens= -2089.958004 fn= 76 theta= -0.106199 4.280770 range=[-1.520 4.500]
max.logdens= -2089.954336 fn= 77 theta= -0.116199 4.290770 range=[-1.523 4.499]
max.logdens= -2089.638979 fn= 78 theta= -0.118588 4.763023 range=[-1.521 4.460]
max.logdens= -2089.634591 fn= 81 theta= -0.108588 4.763023 range=[-1.517 4.460]
max.logdens= -2089.630503 fn= 82 theta= -0.118588 4.773023 range=[-1.521 4.459]
max.logdens= -2089.309363 fn= 83 theta= -0.120858 5.221164 range=[-1.519 4.433]
max.logdens= -2089.305831 fn= 86 theta= -0.110858 5.221164 range=[-1.516 4.433]
max.logdens= -2089.302655 fn= 87 theta= -0.120858 5.231164 range=[-1.519 4.432]
max.logdens= -2088.989629 fn= 88 theta= -0.123015 5.656398 range=[-1.518 4.415]
max.logdens= -2088.985313 fn= 90 theta= -0.113015 5.656398 range=[-1.515 4.415]
max.logdens= -2088.983909 fn= 92 theta= -0.123015 5.666398 range=[-1.518 4.415]
max.logdens= -2088.693822 fn= 93 theta= -0.125063 6.069870 range=[-1.518 4.403]
max.logdens= -2088.687691 fn= 96 theta= -0.115063 6.069870 range=[-1.515 4.403]
max.logdens= -2088.435752 fn= 98 theta= -0.127009 6.462669 range=[-1.518 4.405]
max.logdens= -2088.427441 fn= 101 theta= -0.117009 6.462669 range=[-1.515 4.400]
max.logdens= -2088.229312 fn= 103 theta= -0.128858 6.835827 range=[-1.518 4.407]
max.logdens= -2088.218618 fn= 106 theta= -0.118858 6.835827 range=[-1.515 4.402]
max.logdens= -2088.088835 fn= 108 theta= -0.130615 7.190328 range=[-1.519 4.408]
max.logdens= -2088.075739 fn= 111 theta= -0.120615 7.190328 range=[-1.515 4.403]
max.logdens= -2088.029855 fn= 113 theta= -0.132283 7.527104 range=[-1.519 4.409]
max.logdens= -2088.014470 fn= 116 theta= -0.122283 7.527104 range=[-1.516 4.404]
Iter=3 |grad|=2.54 |x-x.old|=3.54 |f-f.old|=3.16
max.logdens= -2088.011316 fn= 124 theta= -0.114357 7.524484 range=[-1.513 4.400]
max.logdens= -2087.937487 fn= 126 theta= -0.122489 7.523866 range=[-1.516 4.404]
Iter=4 |grad|=1.05 |x-x.old|=0.00729 |f-f.old|=0.0174 Reached numerical limit!
Number of function evaluations = 141
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
200.524464 5.604191
5.604191 24.574750
Eigenvectors of the Hessian
0.999494 -0.031803
0.031803 0.999494
Eigenvalues of the Hessian
200.702783
24.396431
StDev/Correlation matrix (scaled inverse Hessian)
0.070844 -0.079833
0.202369
Compute corrected stdev for theta[0]: negative 1.086420 positive 1.222421
Compute corrected stdev for theta[1]: negative 4.744575 positive 4.608399
config 0=[ 0.75 0.00] log(rel.dens)=-0.33, [0] accept, compute, 10.52s
config 1=[ 0.00 -0.75] log(rel.dens)=-0.01, [2] accept, compute, 10.62s
config 2=[ -0.75 0.00] log(rel.dens)=-0.31, [1] accept, compute, 10.63s
config 3=[ 0.00 0.00] log(rel.dens)=-0.00, [3] accept, compute, 10.68s
config 4=[ 0.00 0.75] log(rel.dens)=-0.09, [0] accept, compute, 10.06s
config 5=[ -0.75 0.75] log(rel.dens)=-0.42, [2] accept, compute, 10.07s
config 6=[ -0.75 -0.75] log(rel.dens)=-0.25, [1] accept, compute, 10.06s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.29, [3] accept, compute, 10.15s
config 8=[ 0.00 -1.50] log(rel.dens)=-0.16, [2] accept, compute, 11.04s
config 9=[ 0.75 0.75] log(rel.dens)=-0.19, [0] accept, compute, 11.19s
config 10=[ -1.50 0.00] log(rel.dens)=-1.06, [1] accept, compute, 11.09s
config 11=[ 1.50 0.00] log(rel.dens)=-0.78, [3] accept, compute, 11.52s
config 12=[ -0.75 1.50] log(rel.dens)=-0.70, [0] accept, compute, 10.57s
config 13=[ 0.00 1.50] log(rel.dens)=-0.06, [2] accept, compute, 10.69s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.28, [1] accept, compute, 10.89s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.24, [3] accept, compute, 10.87s
config 16=[ 0.75 1.50] log(rel.dens)=-0.39, [0] accept, compute, 10.36s
config 17=[ -1.50 -0.75] log(rel.dens)=-1.13, [2] accept, compute, 10.47s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.87, [1] accept, compute, 10.48s
config 19=[ -1.50 0.75] log(rel.dens)=-1.18, [3] accept, compute, 10.45s
config 20=[ 1.50 0.75] log(rel.dens)=-0.74, [0] accept, compute, 9.92s
config 21=[ -1.50 -1.50] log(rel.dens)=-0.87, [2] accept, compute, 10.02s
config 22=[ 1.50 1.50] log(rel.dens)=-0.63, [1] accept, compute, 9.88s
config 23=[ 1.50 -1.50] log(rel.dens)=-0.93, [3] accept, compute, 10.22s
config 24=[ -1.50 1.50] log(rel.dens)=-1.18, [0] accept, compute, 10.35s
config 25=[ 0.00 -2.25] log(rel.dens)=-0.40, [2] accept, compute, 10.34s
config 26=[ 2.25 0.00] log(rel.dens)=-1.79, [1] accept, compute, 10.24s
config 27=[ -2.25 0.00] log(rel.dens)=-2.13, [3] accept, compute, 10.50s
config 28=[ 0.00 2.25] log(rel.dens)=-0.37, [0] accept, compute, 10.02s
config 29=[ 2.25 0.75] log(rel.dens)=-1.61, [2] accept, compute, 10.39s
config 30=[ -0.75 -2.25] log(rel.dens)=-0.26, [1] accept, compute, 10.48s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.38, [3] accept, compute, 10.26s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.02, [0] accept, compute, 10.52s
config 33=[ 2.25 -0.75] log(rel.dens)=-1.84, [2] accept, compute, 10.40s
config 34=[ -0.75 2.25] log(rel.dens)=-0.53, [1] accept, compute, 10.33s
config 35=[ -2.25 0.75] log(rel.dens)=-2.26, [3] accept, compute, 10.49s
config 36=[ 0.75 2.25] log(rel.dens)=-0.16, [0] accept, compute, 10.46s
config 37=[ -2.25 -1.50] log(rel.dens)=-1.95, [2] accept, compute, 10.49s
config 38=[ 2.25 -1.50] log(rel.dens)=-1.98, [1] accept, compute, 10.51s
config 39=[ -1.50 -2.25] log(rel.dens)=-0.98, [3] accept, compute, 10.33s
config 40=[ 2.25 1.50] log(rel.dens)=-1.80, [0] accept, compute, 10.96s
config 41=[ 1.50 -2.25] log(rel.dens)=-1.11, [1] accept, compute, 10.97s
config 42=[ -1.50 2.25] log(rel.dens)=-1.35, [2] accept, compute, 11.09s
config 43=[ -2.25 1.50] log(rel.dens)=-2.57, [3] accept, compute, 10.93s
config 44=[ 1.50 2.25] log(rel.dens)=-0.69, [0] accept, compute, 9.85s
config 45=[ 3.00 0.00] log(rel.dens)=-3.09, [2] accept, compute, 10.00s
config 46=[ 0.00 3.00] log(rel.dens)=-0.22, [1] accept, compute, 10.13s
config 47=[ 0.00 -3.00] log(rel.dens)=-0.18, [3] accept, compute, 10.12s
config 48=[ -3.00 0.00] log(rel.dens)=-3.74, [0] accept, compute, 10.62s
config 49=[ -0.75 -3.00] log(rel.dens)=-0.29, [2] accept, compute, 10.51s
config 50=[ -3.00 0.75] log(rel.dens)=-3.90, [1] accept, compute, 10.57s
config 51=[ 3.00 0.75] log(rel.dens)=-2.95, [3] accept, compute, 10.51s
config 52=[ -0.75 3.00] log(rel.dens)=-0.65, [0] accept, compute, 10.10s
config 53=[ 0.75 -3.00] log(rel.dens)=-0.74, [2] accept, compute, 10.49s
config 54=[ 0.75 3.00] log(rel.dens)=-0.23, [1] accept, compute, 10.47s
config 55=[ 3.00 -0.75] log(rel.dens)=-3.24, [3] accept, compute, 10.36s
config 56=[ -3.00 -0.75] log(rel.dens)=-3.58, [0] accept, compute, 10.62s
config 57=[ 2.25 2.25] log(rel.dens)=-1.60, [2] accept, compute, 10.44s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.14, [1] accept, compute, 10.48s
config 59=[ -2.25 -2.25] log(rel.dens)=-1.89, [3] accept, compute, 10.28s
config 60=[ -2.25 2.25] log(rel.dens)=-2.63, [0] accept, compute, 9.97s
config 61=[ -1.50 3.00] log(rel.dens)=-1.52, [2] accept, compute, 10.18s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.48, [1] accept, compute, 10.16s
config 63=[ 1.50 -3.00] log(rel.dens)=-1.21, [3] accept, compute, 10.24s
config 64=[ 3.00 1.50] log(rel.dens)=-2.85, [0] accept, compute, 10.31s
config 65=[ 1.50 3.00] log(rel.dens)=-0.65, [2] accept, compute, 10.19s
config 66=[ -3.00 1.50] log(rel.dens)=-4.11, [1] accept, compute, 10.03s
config 67=[ -1.50 -3.00] log(rel.dens)=-0.84, [3] accept, compute, 10.14s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.43, [0] accept, compute, 10.00s
config 69=[ 2.25 -3.00] log(rel.dens)=-2.34, [1] accept, compute, 9.88s
config 70=[ -2.25 -3.00] log(rel.dens)=-1.83, [2] accept, compute, 10.13s
config 71=[ 0.00 -3.75] log(rel.dens)=-0.55, [3] accept, compute, 10.01s
config 72=[ -3.00 2.25] log(rel.dens)=-4.37, [0] accept, compute, 10.00s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.67, [1] accept, compute, 10.08s
config 74=[ 3.00 2.25] log(rel.dens)=-2.77, [2] accept, compute, 10.11s
config 75=[ -3.00 -2.25] log(rel.dens)=-3.36, [3] accept, compute, 10.07s
config 76=[ 2.25 3.00] log(rel.dens)=-1.50, [0] accept, compute, 10.32s
config 77=[ 0.00 3.75] log(rel.dens)=-0.38, [1] accept, compute, 10.56s
config 78=[ -2.25 3.00] log(rel.dens)=-2.85, [2] accept, compute, 10.42s
config 79=[ 3.75 0.00] log(rel.dens)=-4.87, [3] accept, compute, 10.39s
config 80=[ -3.75 0.00] log(rel.dens)=-5.82, [0] accept, compute, 10.34s
config 81=[ -0.75 3.75] log(rel.dens)=-0.91, [1] accept, compute, 10.25s
config 82=[ 0.75 -3.75] log(rel.dens)=-0.61, [2] accept, compute, 10.50s
config 83=[ 3.75 0.75] log(rel.dens)=-4.67, [3] accept, compute, 10.55s
config 84=[ -3.75 0.75] log(rel.dens)=-6.08, reject, 0.34s
config 85=[ 3.75 -0.75] log(rel.dens)=-5.08, [0] accept, compute, 10.57s
config 86=[ 0.75 3.75] log(rel.dens)=-0.61, [1] accept, compute, 10.43s
config 87=[ -3.75 -0.75] log(rel.dens)=-5.62, [2] accept, compute, 10.64s
config 88=[ -0.75 -3.75] log(rel.dens)=-0.34, [3] accept, compute, 10.57s
config 89=[ -1.50 3.75] log(rel.dens)=-1.77, [0] accept, compute, 10.80s
config 90=[ 3.75 1.50] log(rel.dens)=-4.53, [1] accept, compute, 10.89s
config 91=[ -1.50 -3.75] log(rel.dens)=-0.85, [2] accept, compute, 11.01s
config 92=[ 1.50 -3.75] log(rel.dens)=-1.36, [3] accept, compute, 10.93s
config 93=[ 1.50 3.75] log(rel.dens)=-0.73, [0] accept, compute, 10.85s
config 94=[ 3.75 -1.50] log(rel.dens)=-5.25, [1] accept, compute, 10.58s
config 95=[ -3.75 -1.50] log(rel.dens)=-5.44, [2] accept, compute, 10.73s
config 96=[ -3.00 -3.00] log(rel.dens)=-3.28, [3] accept, compute, 10.56s
config 97=[ 3.00 -3.00] log(rel.dens)=-3.83, [0] accept, compute, 10.14s
config 98=[ 3.00 3.00] log(rel.dens)=-2.85, [1] accept, compute, 10.07s
config 99=[ -3.00 3.00] log(rel.dens)=-4.61, [2] accept, compute, 10.25s
config 100=[ 2.25 -3.75] log(rel.dens)=-2.53, [3] accept, compute, 10.53s
config 101=[ 2.25 3.75] log(rel.dens)=-1.72, [0] accept, compute, 10.61s
config 102=[ -2.25 -3.75] log(rel.dens)=-1.81, [1] accept, compute, 10.93s
config 103=[ 3.75 -2.25] log(rel.dens)=-5.52, [2] accept, compute, 10.88s
config 104=[ 3.75 2.25] log(rel.dens)=-4.50, [3] accept, compute, 10.97s
config 105=[ -4.50 0.00] log(rel.dens)=-8.42, reject, 0.33s
config 106=[ -3.75 -2.25] log(rel.dens)=-5.31, [0] accept, compute, 10.94s
config 107=[ 4.50 0.00] log(rel.dens)=-7.02, reject, 0.34s
config 108=[ -2.25 3.75] log(rel.dens)=-3.16, [1] accept, compute, 10.64s
config 109=[ 0.00 4.50] log(rel.dens)=-0.58, [2] accept, compute, 10.82s
config 110=[ 0.00 -4.50] log(rel.dens)=-0.37, [3] accept, compute, 10.76s
config 111=[ 0.75 -4.50] log(rel.dens)=-0.74, [0] accept, compute, 10.80s
config 112=[ -0.75 4.50] log(rel.dens)=-1.34, [1] accept, compute, 10.68s
config 113=[ 0.75 4.50] log(rel.dens)=-0.57, [2] accept, compute, 10.63s
config 114=[ -0.75 -4.50] log(rel.dens)=-0.47, [3] accept, compute, 10.58s
config 115=[ -1.50 4.50] log(rel.dens)=-2.02, [0] accept, compute, 10.40s
config 116=[ -1.50 -4.50] log(rel.dens)=-0.87, [1] accept, compute, 10.39s
config 117=[ 1.50 4.50] log(rel.dens)=-0.91, [2] accept, compute, 10.38s
config 118=[ 1.50 -4.50] log(rel.dens)=-1.53, [3] accept, compute, 10.41s
config 119=[ 3.75 -3.00] log(rel.dens)=-5.74, [0] accept, compute, 10.22s
config 120=[ -3.00 -3.75] log(rel.dens)=-3.20, [1] accept, compute, 10.20s
config 121=[ 3.00 3.75] log(rel.dens)=-2.98, [2] accept, compute, 10.11s
config 122=[ -3.00 3.75] log(rel.dens)=-4.92, [3] accept, compute, 10.06s
config 123=[ 3.75 3.00] log(rel.dens)=-4.37, [0] accept, compute, 10.32s
config 124=[ 3.00 -3.75] log(rel.dens)=-4.08, [1] accept, compute, 10.37s
config 125=[ -3.75 -3.00] log(rel.dens)=-5.20, [2] accept, compute, 10.14s
config 126=[ 2.25 -4.50] log(rel.dens)=-2.75, [3] accept, compute, 10.16s
config 127=[ -2.25 -4.50] log(rel.dens)=-1.80, [0] accept, compute, 10.41s
config 128=[ -2.25 4.50] log(rel.dens)=-3.45, [1] accept, compute, 10.27s
config 129=[ 2.25 4.50] log(rel.dens)=-1.63, [2] accept, compute, 10.32s
config 130=[ 0.00 5.25] log(rel.dens)=-0.83, [3] accept, compute, 10.38s
config 131=[ -0.75 -5.25] log(rel.dens)=-0.47, [1] accept, compute, 10.59s
config 132=[ 0.00 -5.25] log(rel.dens)=-0.47, [0] accept, compute, 10.80s
config 133=[ 3.75 3.75] log(rel.dens)=-4.55, [2] accept, compute, 10.49s
config 134=[ -0.75 5.25] log(rel.dens)=-1.44, [3] accept, compute, 10.37s
config 135=[ -3.75 -3.75] log(rel.dens)=-5.05, [1] accept, compute, 10.30s
config 136=[ 0.75 -5.25] log(rel.dens)=-0.95, [0] accept, compute, 10.16s
config 137=[ 0.75 5.25] log(rel.dens)=-0.72, [2] accept, compute, 10.38s
config 138=[ 3.75 -3.75] log(rel.dens)=-5.99, [3] accept, compute, 10.43s
config 139=[ -3.00 -4.50] log(rel.dens)=-3.23, [1] accept, compute, 10.36s
config 140=[ 3.00 -4.50] log(rel.dens)=-4.30, [0] accept, compute, 10.43s
config 141=[ -3.00 4.50] log(rel.dens)=-5.27, [2] accept, compute, 10.41s
config 142=[ 3.00 4.50] log(rel.dens)=-3.00, [3] accept, compute, 10.41s
config 143=[ -1.50 5.25] log(rel.dens)=-2.37, [0] accept, compute, 10.26s
config 144=[ 1.50 5.25] log(rel.dens)=-1.03, [1] accept, compute, 10.40s
config 145=[ -1.50 -5.25] log(rel.dens)=-0.90, [2] accept, compute, 10.42s
config 146=[ 1.50 -5.25] log(rel.dens)=-1.75, [3] accept, compute, 10.40s
config 147=[ 2.25 5.25] log(rel.dens)=-1.76, [0] accept, compute, 10.66s
config 148=[ -2.25 5.25] log(rel.dens)=-3.79, [1] accept, compute, 10.69s
config 149=[ -2.25 -5.25] log(rel.dens)=-1.84, [2] accept, compute, 10.78s
config 150=[ 3.75 -4.50] log(rel.dens)=-6.27, reject, 0.34s
config 151=[ 2.25 -5.25] log(rel.dens)=-2.99, [3] accept, compute, 10.67s
config 152=[ 3.75 4.50] log(rel.dens)=-4.35, [1] accept, compute, 10.24s
config 153=[ -3.75 -4.50] log(rel.dens)=-4.97, [0] accept, compute, 10.41s
config 154=[ 0.00 -6.00] log(rel.dens)=-0.59, [2] accept, compute, 10.35s
config 155=[ 0.00 6.00] log(rel.dens)=-1.15, [3] accept, compute, 10.37s
config 156=[ 3.00 5.25] log(rel.dens)=-2.95, [1] accept, compute, 10.13s
config 157=[ 0.75 -6.00] log(rel.dens)=-1.05, [0] accept, compute, 10.30s
config 158=[ -3.00 5.25] log(rel.dens)=-5.69, [2] accept, compute, 10.42s
config 159=[ -0.75 -6.00] log(rel.dens)=-0.56, [3] accept, compute, 10.27s
config 160=[ 3.00 -5.25] log(rel.dens)=-4.63, [1] accept, compute, 10.00s
config 161=[ -3.00 -5.25] log(rel.dens)=-3.09, [0] accept, compute, 10.20s
config 162=[ 0.75 6.00] log(rel.dens)=-1.00, [2] accept, compute, 10.16s
config 163=[ -0.75 6.00] log(rel.dens)=-1.88, [3] accept, compute, 10.09s
config 164=[ 1.50 6.00] log(rel.dens)=-1.27, [1] accept, compute, 10.71s
config 165=[ -1.50 -6.00] log(rel.dens)=-0.94, [0] accept, compute, 10.69s
config 166=[ -1.50 6.00] log(rel.dens)=-2.75, [2] accept, compute, 10.86s
config 167=[ 1.50 -6.00] log(rel.dens)=-1.90, [3] accept, compute, 10.80s
config 168=[ 2.25 -6.00] log(rel.dens)=-3.16, [1] accept, compute, 10.31s
config 169=[ -2.25 -6.00] log(rel.dens)=-1.85, [0] accept, compute, 10.27s
config 170=[ -2.25 6.00] log(rel.dens)=-4.31, [2] accept, compute, 10.13s
config 171=[ 2.25 6.00] log(rel.dens)=-1.97, [3] accept, compute, 10.20s
config 172=[ -3.75 -5.25] log(rel.dens)=-4.89, [1] accept, compute, 10.09s
config 173=[ 3.75 5.25] log(rel.dens)=-4.41, [0] accept, compute, 10.20s
config 174=[ -3.00 6.00] log(rel.dens)=-6.21, reject, 0.32s
config 175=[ -3.00 -6.00] log(rel.dens)=-3.07, [2] accept, compute, 10.23s
config 176=[ 3.00 6.00] log(rel.dens)=-3.11, [3] accept, compute, 10.24s
config 177=[ 3.00 -6.00] log(rel.dens)=-4.84, [1] accept, compute, 10.57s
config 178=[ 0.00 -6.75] log(rel.dens)=-0.71, [0] accept, compute, 10.53s
config 179=[ 0.00 6.75] log(rel.dens)=-1.54, [2] accept, compute, 10.48s
config 180=[ -0.75 6.75] log(rel.dens)=-2.17, [3] accept, compute, 10.66s
config 181=[ 0.75 -6.75] log(rel.dens)=-1.20, [1] accept, compute, 10.24s
config 182=[ -0.75 -6.75] log(rel.dens)=-0.70, [0] accept, compute, 9.98s
config 183=[ 0.75 6.75] log(rel.dens)=-1.42, [2] accept, compute, 10.08s
config 184=[ -1.50 6.75] log(rel.dens)=-3.30, [3] accept, compute, 10.17s
config 185=[ 1.50 6.75] log(rel.dens)=-1.62, [1] accept, compute, 10.28s
config 186=[ 1.50 -6.75] log(rel.dens)=-2.10, [0] accept, compute, 10.16s
config 187=[ -1.50 -6.75] log(rel.dens)=-1.12, [2] accept, compute, 10.00s
config 188=[ -3.75 -6.00] log(rel.dens)=-4.95, [3] accept, compute, 9.91s
config 189=[ 3.75 6.00] log(rel.dens)=-4.54, [1] accept, compute, 10.12s
config 190=[ -2.25 -6.75] log(rel.dens)=-1.79, [0] accept, compute, 10.15s
config 191=[ -2.25 6.75] log(rel.dens)=-4.74, [2] accept, compute, 10.22s
config 192=[ 2.25 6.75] log(rel.dens)=-2.26, [3] accept, compute, 10.16s
config 193=[ 2.25 -6.75] log(rel.dens)=-3.41, [1] accept, compute, 10.21s
config 194=[ 3.00 6.75] log(rel.dens)=-3.31, [0] accept, compute, 10.34s
config 195=[ -3.00 -6.75] log(rel.dens)=-3.05, [2] accept, compute, 10.12s
config 196=[ 3.00 -6.75] log(rel.dens)=-5.07, [3] accept, compute, 10.11s
config 197=[ 0.00 7.50] log(rel.dens)=-2.03, [1] accept, compute, 10.17s
config 198=[ 0.00 -7.50] log(rel.dens)=-0.84, [0] accept, compute, 10.19s
config 199=[ -0.75 -7.50] log(rel.dens)=-0.73, [2] accept, compute, 10.35s
config 200=[ -0.75 7.50] log(rel.dens)=-2.70, [3] accept, compute, 10.28s
config 201=[ 0.75 -7.50] log(rel.dens)=-1.37, [1] accept, compute, 10.58s
config 202=[ 0.75 7.50] log(rel.dens)=-1.84, [0] accept, compute, 10.42s
config 203=[ 1.50 -7.50] log(rel.dens)=-2.30, [2] accept, compute, 10.44s
config 204=[ 1.50 7.50] log(rel.dens)=-2.00, [3] accept, compute, 10.77s
config 205=[ -1.50 -7.50] log(rel.dens)=-1.05, [1] accept, compute, 10.07s
config 206=[ -1.50 7.50] log(rel.dens)=-3.79, [0] accept, compute, 10.10s
config 207=[ -3.75 -6.75] log(rel.dens)=-4.73, [2] accept, compute, 10.16s
config 208=[ 3.75 6.75] log(rel.dens)=-4.75, [3] accept, compute, 10.03s
config 209=[ -2.25 7.50] log(rel.dens)=-5.35, [1] accept, compute, 10.55s
config 210=[ 2.25 -7.50] log(rel.dens)=-3.64, [0] accept, compute, 10.81s
config 211=[ 2.25 7.50] log(rel.dens)=-2.63, [2] accept, compute, 11.32s
config 212=[ -2.25 -7.50] log(rel.dens)=-1.81, [3] accept, compute, 11.22s
config 213=[ -3.00 -7.50] log(rel.dens)=-3.05, [1] accept, compute, 10.62s
config 214=[ 3.00 -7.50] log(rel.dens)=-5.39, [0] accept, compute, 10.61s
config 215=[ 3.00 7.50] log(rel.dens)=-3.70, [2] accept, compute, 10.11s
config 216=[ 0.00 -8.25] log(rel.dens)=-0.98, [3] accept, compute, 10.30s
config 217=[ 0.00 8.25] log(rel.dens)=-2.61, [1] accept, compute, 10.11s
config 218=[ 0.75 -8.25] log(rel.dens)=-1.54, [0] accept, compute, 10.04s
config 219=[ 0.75 8.25] log(rel.dens)=-2.34, [2] accept, compute, 9.93s
config 220=[ -0.75 8.25] log(rel.dens)=-3.31, [3] accept, compute, 10.14s
config 221=[ -0.75 -8.25] log(rel.dens)=-0.90, [1] accept, compute, 10.00s
config 222=[ 1.50 8.25] log(rel.dens)=-2.57, [0] accept, compute, 10.04s
config 223=[ -1.50 -8.25] log(rel.dens)=-1.19, [2] accept, compute, 10.59s
config 224=[ -3.75 -7.50] log(rel.dens)=-4.65, [3] accept, compute, 10.62s
config 225=[ 3.75 7.50] log(rel.dens)=-5.05, [1] accept, compute, 10.83s
config 226=[ -2.25 8.25] log(rel.dens)=-6.08, reject, 0.29s
config 227=[ 1.50 -8.25] log(rel.dens)=-2.74, [0] accept, compute, 10.74s
config 228=[ -1.50 8.25] log(rel.dens)=-4.75, [2] accept, compute, 10.58s
config 229=[ 2.25 8.25] log(rel.dens)=-3.10, [3] accept, compute, 10.31s
config 230=[ -2.25 -8.25] log(rel.dens)=-2.12, [1] accept, compute, 10.11s
config 231=[ 2.25 -8.25] log(rel.dens)=-3.93, [0] accept, compute, 10.11s
config 232=[ 3.00 -8.25] log(rel.dens)=-5.63, [2] accept, compute, 10.12s
config 233=[ 3.00 8.25] log(rel.dens)=-4.13, [3] accept, compute, 10.13s
config 234=[ -3.00 -8.25] log(rel.dens)=-3.06, [1] accept, compute, 10.13s
config 235=[ 0.00 -9.00] log(rel.dens)=-1.12, [0] accept, compute, 10.39s
config 236=[ 0.00 9.00] log(rel.dens)=-3.32, [2] accept, compute, 10.13s
config 237=[ 0.75 9.00] log(rel.dens)=-3.01, [3] accept, compute, 10.30s
config 238=[ -0.75 -9.00] log(rel.dens)=-0.94, [1] accept, compute, 10.35s
config 239=[ -0.75 9.00] log(rel.dens)=-4.05, [0] accept, compute, 10.29s
config 240=[ 0.75 -9.00] log(rel.dens)=-1.72, [2] accept, compute, 10.48s
config 241=[ -3.75 -8.25] log(rel.dens)=-4.60, [3] accept, compute, 10.50s
config 242=[ 3.75 8.25] log(rel.dens)=-5.46, [1] accept, compute, 10.22s
config 243=[ -1.50 9.00] log(rel.dens)=-5.31, [0] accept, compute, 10.09s
config 244=[ -1.50 -9.00] log(rel.dens)=-1.18, [2] accept, compute, 10.22s
config 245=[ 1.50 -9.00] log(rel.dens)=-2.74, [3] accept, compute, 10.25s
config 246=[ 1.50 9.00] log(rel.dens)=-3.13, [1] accept, compute, 10.07s
config 247=[ -2.25 -9.00] log(rel.dens)=-1.96, [0] accept, compute, 10.00s
config 248=[ 2.25 9.00] log(rel.dens)=-3.68, [2] accept, compute, 10.19s
config 249=[ 2.25 -9.00] log(rel.dens)=-4.17, [3] accept, compute, 10.11s
config 250=[ -3.00 -9.00] log(rel.dens)=-2.98, [1] accept, compute, 11.01s
config 251=[ 3.00 -9.00] log(rel.dens)=-5.90, [0] accept, compute, 10.88s
config 252=[ 3.00 9.00] log(rel.dens)=-4.69, [2] accept, compute, 10.86s
config 253=[ 3.75 9.00] log(rel.dens)=-6.03, reject, 0.20s
config 254=[ 0.00 9.75] log(rel.dens)=-4.15, [3] accept, compute, 11.05s
config 255=[ -3.75 -9.00] log(rel.dens)=-4.63, [1] accept, compute, 9.95s
config 256=[ 0.00 -9.75] log(rel.dens)=-1.27, [0] accept, compute, 9.94s
config 257=[ -0.75 -9.75] log(rel.dens)=-1.05, [2] accept, compute, 10.34s
config 258=[ -1.50 9.75] log(rel.dens)=-6.15, reject, 0.34s
config 259=[ -0.75 9.75] log(rel.dens)=-5.00, [3] accept, compute, 10.31s
config 260=[ 0.75 -9.75] log(rel.dens)=-1.96, [0] accept, compute, 10.49s
config 261=[ 0.75 9.75] log(rel.dens)=-3.81, [1] accept, compute, 10.76s
config 262=[ 1.50 9.75] log(rel.dens)=-3.90, [2] accept, compute, 10.40s
config 263=[ 1.50 -9.75] log(rel.dens)=-2.94, [3] accept, compute, 10.44s
config 264=[ -1.50 -9.75] log(rel.dens)=-1.25, [0] accept, compute, 10.34s
config 265=[ 2.25 -9.75] log(rel.dens)=-4.36, [1] accept, compute, 10.24s
config 266=[ 3.00 -9.75] log(rel.dens)=-6.22, reject, 0.22s
config 267=[ 2.25 9.75] log(rel.dens)=-4.47, [2] accept, compute, 10.33s
config 268=[ -2.25 -9.75] log(rel.dens)=-1.90, [3] accept, compute, 10.38s
config 269=[ 3.00 9.75] log(rel.dens)=-5.32, [0] accept, compute, 10.38s
config 270=[ -3.00 -9.75] log(rel.dens)=-3.00, [1] accept, compute, 10.40s
config 271=[ -3.75 -9.75] log(rel.dens)=-4.51, [2] accept, compute, 10.44s
config 272=[ 0.00 10.50] log(rel.dens)=-5.16, [3] accept, compute, 10.27s
config 273=[ -0.75 10.50] log(rel.dens)=-6.03, reject, 0.23s
config 274=[ 0.00 -10.50] log(rel.dens)=-1.58, [0] accept, compute, 9.89s
config 275=[ -0.75 -10.50] log(rel.dens)=-1.16, [1] accept, compute, 10.01s
config 276=[ 0.75 -10.50] log(rel.dens)=-2.09, [2] accept, compute, 10.34s
config 277=[ 0.75 10.50] log(rel.dens)=-5.04, [3] accept, compute, 10.27s
config 278=[ -1.50 -10.50] log(rel.dens)=-1.60, [0] accept, compute, 10.47s
config 279=[ 1.50 10.50] log(rel.dens)=-4.83, [1] accept, compute, 10.36s
config 280=[ 1.50 -10.50] log(rel.dens)=-3.21, [2] accept, compute, 10.13s
config 281=[ 2.25 10.50] log(rel.dens)=-5.54, [3] accept, compute, 10.17s
config 282=[ 3.00 10.50] log(rel.dens)=-6.23, reject, 0.23s
config 283=[ 2.25 -10.50] log(rel.dens)=-4.62, [0] accept, compute, 10.47s
config 284=[ 0.00 11.25] log(rel.dens)=-6.32, reject, 0.31s
config 285=[ -2.25 -10.50] log(rel.dens)=-1.93, [1] accept, compute, 10.53s
config 286=[ -3.00 -10.50] log(rel.dens)=-2.98, [2] accept, compute, 10.81s
config 287=[ -3.75 -10.50] log(rel.dens)=-4.48, [3] accept, compute, 10.80s
config 288=[ 0.00 -11.25] log(rel.dens)=-1.57, [0] accept, compute, 10.46s
config 289=[ 0.75 -11.25] log(rel.dens)=-2.27, [1] accept, compute, 10.56s
config 290=[ -0.75 -11.25] log(rel.dens)=-1.28, [2] accept, compute, 10.51s
config 291=[ 1.50 -11.25] log(rel.dens)=-3.39, [3] accept, compute, 10.56s
config 292=[ -1.50 -11.25] log(rel.dens)=-1.68, [0] accept, compute, 10.30s
config 293=[ 2.25 -11.25] log(rel.dens)=-5.08, [1] accept, compute, 10.30s
config 294=[ -2.25 -11.25] log(rel.dens)=-2.26, [2] accept, compute, 10.10s
config 295=[ -3.00 -11.25] log(rel.dens)=-2.99, [3] accept, compute, 10.28s
config 296=[ -3.75 -11.25] log(rel.dens)=-4.43, [0] accept, compute, 10.40s
config 297=[ 0.00 -12.00] log(rel.dens)=-1.72, [1] accept, compute, 10.40s
config 298=[ -0.75 -12.00] log(rel.dens)=-1.69, [2] accept, compute, 10.10s
config 299=[ 0.75 -12.00] log(rel.dens)=-2.46, [3] accept, compute, 10.29s
config 300=[ -1.50 -12.00] log(rel.dens)=-1.50, [0] accept, compute, 10.53s
config 301=[ 1.50 -12.00] log(rel.dens)=-3.82, [1] accept, compute, 10.76s
config 302=[ 2.25 -12.00] log(rel.dens)=-5.11, [2] accept, compute, 10.53s
config 303=[ -2.25 -12.00] log(rel.dens)=-2.03, [3] accept, compute, 10.47s
config 304=[ -3.00 -12.00] log(rel.dens)=-3.29, [0] accept, compute, 10.34s
config 305=[ -3.75 -12.00] log(rel.dens)=-4.42, [1] accept, compute, 10.29s
config 306=[ 0.00 -12.75] log(rel.dens)=-1.88, [2] accept, compute, 10.28s
config 307=[ -0.75 -12.75] log(rel.dens)=-1.81, [3] accept, compute, 10.14s
config 308=[ 0.75 -12.75] log(rel.dens)=-2.65, [0] accept, compute, 10.09s
config 309=[ 1.50 -12.75] log(rel.dens)=-3.82, [1] accept, compute, 10.41s
config 310=[ -1.50 -12.75] log(rel.dens)=-1.85, [2] accept, compute, 10.14s
config 311=[ -2.25 -12.75] log(rel.dens)=-2.35, [3] accept, compute, 10.27s
config 312=[ 2.25 -12.75] log(rel.dens)=-5.58, [0] accept, compute, 10.83s
config 313=[ -3.00 -12.75] log(rel.dens)=-3.01, [1] accept, compute, 10.96s
config 314=[ -3.75 -12.75] log(rel.dens)=-4.38, [2] accept, compute, 11.02s
config 315=[ 0.00 -13.50] log(rel.dens)=-2.03, [3] accept, compute, 11.17s
config 316=[ -0.75 -13.50] log(rel.dens)=-1.64, [0] accept, compute, 10.51s
config 317=[ 0.75 -13.50] log(rel.dens)=-2.83, [1] accept, compute, 10.98s
config 318=[ -1.50 -13.50] log(rel.dens)=-1.67, [2] accept, compute, 11.51s
config 319=[ 1.50 -13.50] log(rel.dens)=-4.25, [3] accept, compute, 11.99s
config 320=[ -2.25 -13.50] log(rel.dens)=-2.40, [0] accept, compute, 14.23s
config 321=[ 2.25 -13.50] log(rel.dens)=-5.82, [1] accept, compute, 13.77s
config 322=[ -3.00 -13.50] log(rel.dens)=-3.31, [2] accept, compute, 13.38s
config 323=[ -3.75 -13.50] log(rel.dens)=-4.37, [3] accept, compute, 12.68s
config 324=[ 0.00 -14.25] log(rel.dens)=-2.19, [0] accept, compute, 10.23s
config 325=[ -0.75 -14.25] log(rel.dens)=-1.76, [1] accept, compute, 10.29s
config 326=[ 0.75 -14.25] log(rel.dens)=-3.02, [2] accept, compute, 10.14s
config 327=[ 2.25 -14.25] log(rel.dens)=-6.06, reject, 0.25s
config 328=[ -1.50 -14.25] log(rel.dens)=-1.76, [3] accept, compute, 10.31s
config 329=[ 1.50 -14.25] log(rel.dens)=-4.47, [0] accept, compute, 10.13s
config 330=[ -2.25 -14.25] log(rel.dens)=-2.45, [1] accept, compute, 9.98s
config 331=[ -3.00 -14.25] log(rel.dens)=-3.05, [2] accept, compute, 10.04s
config 332=[ -3.75 -14.25] log(rel.dens)=-4.33, [3] accept, compute, 10.15s
config 333=[ 0.00 -15.00] log(rel.dens)=-2.56, [0] accept, compute, 9.99s
config 334=[ 0.75 -15.00] log(rel.dens)=-3.20, [1] accept, compute, 10.12s
config 335=[ -0.75 -15.00] log(rel.dens)=-1.88, [2] accept, compute, 10.37s
config 336=[ 1.50 -15.00] log(rel.dens)=-4.47, [3] accept, compute, 10.55s
config 337=[ -1.50 -15.00] log(rel.dens)=-2.11, [0] accept, compute, 10.53s
config 338=[ -2.25 -15.00] log(rel.dens)=-2.23, [1] accept, compute, 10.74s
config 339=[ -3.00 -15.00] log(rel.dens)=-3.05, [2] accept, compute, 10.64s
config 340=[ -3.75 -15.00] log(rel.dens)=-4.33, [3] accept, compute, 10.51s
config 341=[ 0.00 -15.75] log(rel.dens)=-2.76, [0] accept, compute, 10.01s
config 342=[ 0.75 -15.75] log(rel.dens)=-3.38, [1] accept, compute, 10.40s
config 343=[ -0.75 -15.75] log(rel.dens)=-2.00, [2] accept, compute, 10.50s
config 344=[ 1.50 -15.75] log(rel.dens)=-4.67, [3] accept, compute, 10.81s
config 345=[ -1.50 -15.75] log(rel.dens)=-2.19, [0] accept, compute, 11.78s
config 346=[ -2.25 -15.75] log(rel.dens)=-2.29, [1] accept, compute, 11.49s
config 347=[ -3.00 -15.75] log(rel.dens)=-3.07, [2] accept, compute, 11.52s
config 348=[ -3.75 -15.75] log(rel.dens)=-4.32, [3] accept, compute, 11.50s
config 349=[ 0.00 -16.50] log(rel.dens)=-2.90, [0] accept, compute, 10.65s
config 350=[ 0.75 -16.50] log(rel.dens)=-3.56, [1] accept, compute, 10.71s
config 351=[ -0.75 -16.50] log(rel.dens)=-2.12, [2] accept, compute, 10.70s
config 352=[ 1.50 -16.50] log(rel.dens)=-4.88, [3] accept, compute, 10.88s
config 353=[ -1.50 -16.50] log(rel.dens)=-2.28, [0] accept, compute, 10.18s
config 354=[ -2.25 -16.50] log(rel.dens)=-2.34, [1] accept, compute, 10.19s
config 355=[ -3.00 -16.50] log(rel.dens)=-3.09, [2] accept, compute, 10.49s
config 356=[ -3.75 -16.50] log(rel.dens)=-4.31, [3] accept, compute, 10.56s
config 357=[ 0.00 -17.25] log(rel.dens)=-3.05, [0] accept, compute, 10.69s
config 358=[ -0.75 -17.25] log(rel.dens)=-2.52, [1] accept, compute, 10.89s
config 359=[ 0.75 -17.25] log(rel.dens)=-3.73, [2] accept, compute, 10.96s
config 360=[ -1.50 -17.25] log(rel.dens)=-2.11, [3] accept, compute, 10.89s
config 361=[ 1.50 -17.25] log(rel.dens)=-5.28, [0] accept, compute, 10.32s
config 362=[ -2.25 -17.25] log(rel.dens)=-2.67, [1] accept, compute, 10.24s
config 363=[ -3.00 -17.25] log(rel.dens)=-3.12, [2] accept, compute, 10.32s
config 364=[ -3.75 -17.25] log(rel.dens)=-4.28, [3] accept, compute, 10.27s
config 365=[ 0.00 -18.00] log(rel.dens)=-3.15, [0] accept, compute, 10.28s
config 366=[ -0.75 -18.00] log(rel.dens)=-2.63, [1] accept, compute, 10.59s
config 367=[ 0.75 -18.00] log(rel.dens)=-3.90, [2] accept, compute, 10.73s
config 368=[ -1.50 -18.00] log(rel.dens)=-2.20, [3] accept, compute, 11.08s
config 369=[ 1.50 -18.00] log(rel.dens)=-5.48, [0] accept, compute, 10.24s
config 370=[ -2.25 -18.00] log(rel.dens)=-2.73, [1] accept, compute, 10.56s
config 371=[ -3.00 -18.00] log(rel.dens)=-3.15, [2] accept, compute, 10.31s
config 372=[ -3.75 -18.00] log(rel.dens)=-4.27, [3] accept, compute, 10.23s
config 373=[ 0.00 -18.75] log(rel.dens)=-3.29, [0] accept, compute, 10.31s
config 374=[ -0.75 -18.75] log(rel.dens)=-2.75, [1] accept, compute, 10.30s
config 375=[ 0.75 -18.75] log(rel.dens)=-4.07, [2] accept, compute, 10.34s
config 376=[ 1.50 -18.75] log(rel.dens)=-5.46, [3] accept, compute, 10.40s
config 377=[ -1.50 -18.75] log(rel.dens)=-2.54, [0] accept, compute, 10.03s
config 378=[ -2.25 -18.75] log(rel.dens)=-2.79, [1] accept, compute, 10.11s
config 379=[ -3.00 -18.75] log(rel.dens)=-3.18, [2] accept, compute, 10.31s
config 380=[ -3.75 -18.75] log(rel.dens)=-4.29, [3] accept, compute, 10.13s
config 381=[ 0.00 -19.50] log(rel.dens)=-3.47, [0] accept, compute, 10.14s
config 382=[ -0.75 -19.50] log(rel.dens)=-2.86, [1] accept, compute, 10.40s
config 383=[ 0.75 -19.50] log(rel.dens)=-4.23, [2] accept, compute, 10.37s
config 384=[ 1.50 -19.50] log(rel.dens)=-5.64, [3] accept, compute, 10.27s
config 385=[ -1.50 -19.50] log(rel.dens)=-2.63, [0] accept, compute, 10.25s
config 386=[ -2.25 -19.50] log(rel.dens)=-2.85, [1] accept, compute, 10.18s
config 387=[ -3.00 -19.50] log(rel.dens)=-3.21, [2] accept, compute, 10.31s
config 388=[ -3.75 -19.50] log(rel.dens)=-4.29, [3] accept, compute, 10.31s
config 389=[ 0.00 -20.25] log(rel.dens)=-3.61, [0] accept, compute, 10.32s
config 390=[ 0.75 -20.25] log(rel.dens)=-4.39, [1] accept, compute, 10.41s
config 391=[ -0.75 -20.25] log(rel.dens)=-2.71, [2] accept, compute, 10.94s
config 392=[ 1.50 -20.25] log(rel.dens)=-5.82, [3] accept, compute, 11.12s
config 393=[ -1.50 -20.25] log(rel.dens)=-2.73, [0] accept, compute, 11.20s
config 394=[ -2.25 -20.25] log(rel.dens)=-2.65, [1] accept, compute, 11.02s
config 395=[ -3.00 -20.25] log(rel.dens)=-3.25, [2] accept, compute, 10.67s
config 396=[ -3.75 -20.25] log(rel.dens)=-4.30, [3] accept, compute, 10.32s
config 397=[ 0.00 -21.00] log(rel.dens)=-3.75, [0] accept, compute, 11.18s
config 398=[ 1.50 -21.00] log(rel.dens)=-6.20, reject, 0.40s
config 399=[ -0.75 -21.00] log(rel.dens)=-3.10, [1] accept, compute, 11.20s
config 400=[ 0.75 -21.00] log(rel.dens)=-4.55, [2] accept, compute, 12.97s
config 401=[ -1.50 -21.00] log(rel.dens)=-2.57, [3] accept, compute, 13.13s
config 402=[ -2.25 -21.00] log(rel.dens)=-2.72, [0] accept, compute, 12.80s
config 403=[ -3.00 -21.00] log(rel.dens)=-3.29, [1] accept, compute, 12.56s
config 404=[ -3.75 -21.00] log(rel.dens)=-4.31, [2] accept, compute, 10.81s
config 405=[ 0.00 -21.75] log(rel.dens)=-3.89, [3] accept, compute, 10.47s
config 406=[ -0.75 -21.75] log(rel.dens)=-3.22, [0] accept, compute, 10.18s
config 407=[ 0.75 -21.75] log(rel.dens)=-4.71, [1] accept, compute, 10.28s
config 408=[ -1.50 -21.75] log(rel.dens)=-2.67, [2] accept, compute, 10.38s
config 409=[ -2.25 -21.75] log(rel.dens)=-2.80, [3] accept, compute, 10.46s
config 410=[ -3.00 -21.75] log(rel.dens)=-3.35, [0] accept, compute, 10.40s
config 411=[ -3.75 -21.75] log(rel.dens)=-4.34, [1] accept, compute, 10.52s
config 412=[ 0.00 -22.50] log(rel.dens)=-4.03, [2] accept, compute, 10.28s
config 413=[ -0.75 -22.50] log(rel.dens)=-3.34, [3] accept, compute, 10.28s
config 414=[ 0.75 -22.50] log(rel.dens)=-4.87, [0] accept, compute, 10.55s
config 415=[ -1.50 -22.50] log(rel.dens)=-2.78, [1] accept, compute, 10.70s
config 416=[ -2.25 -22.50] log(rel.dens)=-2.89, [2] accept, compute, 10.60s
config 417=[ -3.00 -22.50] log(rel.dens)=-3.42, [3] accept, compute, 10.85s
config 418=[ -3.75 -22.50] log(rel.dens)=-4.38, [0] accept, compute, 10.60s
config 419=[ 0.00 -23.25] log(rel.dens)=-4.17, [1] accept, compute, 10.24s
config 420=[ -0.75 -23.25] log(rel.dens)=-3.47, [2] accept, compute, 10.06s
config 421=[ 0.75 -23.25] log(rel.dens)=-5.02, [3] accept, compute, 10.09s
config 422=[ -1.50 -23.25] log(rel.dens)=-2.90, [0] accept, compute, 10.35s
config 423=[ -2.25 -23.25] log(rel.dens)=-2.99, [1] accept, compute, 10.30s
config 424=[ -3.00 -23.25] log(rel.dens)=-3.49, [2] accept, compute, 9.32s
config 425=[ -3.75 -23.25] log(rel.dens)=-4.44, [3] accept, compute, 8.55s
Combine the densities with relative weights:
config 0/412=[ 0.75 0.00] weight = 0.721 adjusted weight = 0.010 neff = 773.43
config 1/412=[ 0.00 -0.75] weight = 0.989 adjusted weight = 0.014 neff = 793.67
config 2/412=[ -0.75 0.00] weight = 0.736 adjusted weight = 0.011 neff = 818.41
config 3/412=[ 0.00 0.00] weight = 1.000 adjusted weight = 0.015 neff = 795.72
config 4/412=[ 0.00 0.75] weight = 0.918 adjusted weight = 0.013 neff = 797.87
config 5/412=[ -0.75 0.75] weight = 0.662 adjusted weight = 0.010 neff = 820.54
config 6/412=[ -0.75 -0.75] weight = 0.784 adjusted weight = 0.011 neff = 816.30
config 7/412=[ 0.75 -0.75] weight = 0.754 adjusted weight = 0.011 neff = 771.27
config 8/412=[ 0.00 -1.50] weight = 0.856 adjusted weight = 0.012 neff = 791.77
config 9/412=[ 0.75 0.75] weight = 0.827 adjusted weight = 0.012 neff = 775.32
config 10/412=[ -1.50 0.00] weight = 0.347 adjusted weight = 0.005 neff = 841.20
config 11/412=[ 1.50 0.00] weight = 0.460 adjusted weight = 0.007 neff = 750.90
config 12/412=[ -0.75 1.50] weight = 0.498 adjusted weight = 0.007 neff = 822.87
config 13/412=[ 0.00 1.50] weight = 0.949 adjusted weight = 0.014 neff = 799.83
config 14/412=[ 0.75 -1.50] weight = 0.756 adjusted weight = 0.011 neff = 769.14
config 15/412=[ -0.75 -1.50] weight = 0.787 adjusted weight = 0.011 neff = 814.25
config 16/412=[ 0.75 1.50] weight = 0.678 adjusted weight = 0.010 neff = 777.62
config 17/412=[ -1.50 -0.75] weight = 0.325 adjusted weight = 0.005 neff = 839.30
config 18/412=[ 1.50 -0.75] weight = 0.421 adjusted weight = 0.006 neff = 748.88
config 19/412=[ -1.50 0.75] weight = 0.307 adjusted weight = 0.004 neff = 843.31
config 20/412=[ 1.50 0.75] weight = 0.480 adjusted weight = 0.007 neff = 752.95
config 21/412=[ -1.50 -1.50] weight = 0.420 adjusted weight = 0.006 neff = 836.96
config 22/412=[ 1.50 1.50] weight = 0.534 adjusted weight = 0.008 neff = 754.88
config 23/412=[ 1.50 -1.50] weight = 0.396 adjusted weight = 0.006 neff = 746.81
config 24/412=[ -1.50 1.50] weight = 0.307 adjusted weight = 0.004 neff = 845.23
config 25/412=[ 0.00 -2.25] weight = 0.672 adjusted weight = 0.010 neff = 789.98
config 26/412=[ 2.25 0.00] weight = 0.167 adjusted weight = 0.002 neff = 728.75
config 27/412=[ -2.25 0.00] weight = 0.119 adjusted weight = 0.002 neff = 863.89
config 28/412=[ 0.00 2.25] weight = 0.693 adjusted weight = 0.010 neff = 802.20
config 29/412=[ 2.25 0.75] weight = 0.201 adjusted weight = 0.003 neff = 730.64
config 30/412=[ -0.75 -2.25] weight = 0.774 adjusted weight = 0.011 neff = 812.20
config 31/412=[ 0.75 -2.25] weight = 0.689 adjusted weight = 0.010 neff = 767.12
config 32/412=[ -2.25 -0.75] weight = 0.133 adjusted weight = 0.002 neff = 861.82
config 33/412=[ 2.25 -0.75] weight = 0.160 adjusted weight = 0.002 neff = 726.65
config 34/412=[ -0.75 2.25] weight = 0.594 adjusted weight = 0.009 neff = 824.57
config 35/412=[ -2.25 0.75] weight = 0.105 adjusted weight = 0.002 neff = 865.96
config 36/412=[ 0.75 2.25] weight = 0.855 adjusted weight = 0.012 neff = 779.32
config 37/412=[ -2.25 -1.50] weight = 0.143 adjusted weight = 0.002 neff = 859.76
config 38/412=[ 2.25 -1.50] weight = 0.138 adjusted weight = 0.002 neff = 724.65
config 39/412=[ -1.50 -2.25] weight = 0.375 adjusted weight = 0.005 neff = 835.08
config 40/412=[ 2.25 1.50] weight = 0.167 adjusted weight = 0.002 neff = 733.00
config 41/412=[ 1.50 -2.25] weight = 0.332 adjusted weight = 0.005 neff = 744.86
config 42/412=[ -1.50 2.25] weight = 0.260 adjusted weight = 0.004 neff = 847.32
config 43/412=[ -2.25 1.50] weight = 0.076 adjusted weight = 0.001 neff = 868.24
config 44/412=[ 1.50 2.25] weight = 0.501 adjusted weight = 0.007 neff = 757.00
config 45/412=[ 3.00 0.00] weight = 0.046 adjusted weight = 0.001 neff = 706.66
config 46/412=[ 0.00 3.00] weight = 0.802 adjusted weight = 0.012 neff = 803.93
config 47/412=[ 0.00 -3.00] weight = 0.841 adjusted weight = 0.012 neff = 787.56
config 48/412=[ -3.00 0.00] weight = 0.024 adjusted weight = 0.000 neff = 886.73
config 49/412=[ -0.75 -3.00] weight = 0.748 adjusted weight = 0.011 neff = 810.15
config 50/412=[ -3.00 0.75] weight = 0.020 adjusted weight = 0.000 neff = 888.80
config 51/412=[ 3.00 0.75] weight = 0.053 adjusted weight = 0.001 neff = 708.64
config 52/412=[ -0.75 3.00] weight = 0.524 adjusted weight = 0.008 neff = 826.61
config 53/412=[ 0.75 -3.00] weight = 0.479 adjusted weight = 0.007 neff = 765.44
config 54/412=[ 0.75 3.00] weight = 0.796 adjusted weight = 0.012 neff = 781.37
config 55/412=[ 3.00 -0.75] weight = 0.039 adjusted weight = 0.001 neff = 704.68
config 56/412=[ -3.00 -0.75] weight = 0.028 adjusted weight = 0.000 neff = 884.65
config 57/412=[ 2.25 2.25] weight = 0.202 adjusted weight = 0.003 neff = 734.81
config 58/412=[ 2.25 -2.25] weight = 0.118 adjusted weight = 0.002 neff = 722.66
config 59/412=[ -2.25 -2.25] weight = 0.151 adjusted weight = 0.002 neff = 857.70
config 60/412=[ -2.25 2.25] weight = 0.072 adjusted weight = 0.001 neff = 870.15
config 61/412=[ -1.50 3.00] weight = 0.219 adjusted weight = 0.003 neff = 849.37
config 62/412=[ -3.00 -1.50] weight = 0.031 adjusted weight = 0.000 neff = 882.60
config 63/412=[ 1.50 -3.00] weight = 0.300 adjusted weight = 0.004 neff = 742.80
config 64/412=[ 3.00 1.50] weight = 0.058 adjusted weight = 0.001 neff = 710.64
config 65/412=[ 1.50 3.00] weight = 0.522 adjusted weight = 0.008 neff = 758.94
config 66/412=[ -3.00 1.50] weight = 0.017 adjusted weight = 0.000 neff = 890.88
config 67/412=[ -1.50 -3.00] weight = 0.432 adjusted weight = 0.006 neff = 832.85
config 68/412=[ 3.00 -1.50] weight = 0.033 adjusted weight = 0.000 neff = 702.71
config 69/412=[ 2.25 -3.00] weight = 0.096 adjusted weight = 0.001 neff = 720.70
config 70/412=[ -2.25 -3.00] weight = 0.161 adjusted weight = 0.002 neff = 855.63
config 71/412=[ 0.00 -3.75] weight = 0.577 adjusted weight = 0.008 neff = 785.92
config 72/412=[ -3.00 2.25] weight = 0.013 adjusted weight = 0.000 neff = 893.00
config 73/412=[ 3.00 -2.25] weight = 0.026 adjusted weight = 0.000 neff = 700.79
config 74/412=[ 3.00 2.25] weight = 0.063 adjusted weight = 0.001 neff = 712.62
config 75/412=[ -3.00 -2.25] weight = 0.035 adjusted weight = 0.001 neff = 880.51
config 76/412=[ 2.25 3.00] weight = 0.224 adjusted weight = 0.003 neff = 736.69
config 77/412=[ 0.00 3.75] weight = 0.689 adjusted weight = 0.010 neff = 805.99
config 78/412=[ -2.25 3.00] weight = 0.058 adjusted weight = 0.001 neff = 872.21
config 79/412=[ 3.75 0.00] weight = 0.008 adjusted weight = 0.000 neff = 684.93
config 80/412=[ -3.75 0.00] weight = 0.003 adjusted weight = 0.000 neff = 909.59
config 81/412=[ -0.75 3.75] weight = 0.404 adjusted weight = 0.006 neff = 828.77
config 82/412=[ 0.75 -3.75] weight = 0.546 adjusted weight = 0.008 neff = 763.09
config 83/412=[ 3.75 0.75] weight = 0.009 adjusted weight = 0.000 neff = 686.85
config 84/412=[ 3.75 -0.75] weight = 0.006 adjusted weight = 0.000 neff = 683.01
config 85/412=[ 0.75 3.75] weight = 0.547 adjusted weight = 0.008 neff = 783.76
config 86/412=[ -3.75 -0.75] weight = 0.004 adjusted weight = 0.000 neff = 907.50
config 87/412=[ -0.75 -3.75] weight = 0.714 adjusted weight = 0.010 neff = 808.11
config 88/412=[ -1.50 3.75] weight = 0.172 adjusted weight = 0.002 neff = 851.47
config 89/412=[ 3.75 1.50] weight = 0.011 adjusted weight = 0.000 neff = 688.82
config 90/412=[ -1.50 -3.75] weight = 0.430 adjusted weight = 0.006 neff = 830.80
config 91/412=[ 1.50 -3.75] weight = 0.257 adjusted weight = 0.004 neff = 740.80
config 92/412=[ 1.50 3.75] weight = 0.485 adjusted weight = 0.007 neff = 760.97
config 93/412=[ 3.75 -1.50] weight = 0.005 adjusted weight = 0.000 neff = 680.99
config 94/412=[ -3.75 -1.50] weight = 0.004 adjusted weight = 0.000 neff = 905.42
config 95/412=[ -3.00 -3.00] weight = 0.038 adjusted weight = 0.001 neff = 878.46
config 96/412=[ 3.00 -3.00] weight = 0.022 adjusted weight = 0.000 neff = 698.77
config 97/412=[ 3.00 3.00] weight = 0.058 adjusted weight = 0.001 neff = 714.78
config 98/412=[ -3.00 3.00] weight = 0.010 adjusted weight = 0.000 neff = 895.05
config 99/412=[ 2.25 -3.75] weight = 0.080 adjusted weight = 0.001 neff = 718.72
config 100/412=[ 2.25 3.75] weight = 0.180 adjusted weight = 0.003 neff = 738.94
config 101/412=[ -2.25 -3.75] weight = 0.164 adjusted weight = 0.002 neff = 853.58
config 102/412=[ 3.75 -2.25] weight = 0.004 adjusted weight = 0.000 neff = 679.10
config 103/412=[ 3.75 2.25] weight = 0.011 adjusted weight = 0.000 neff = 690.90
config 104/412=[ -3.75 -2.25] weight = 0.005 adjusted weight = 0.000 neff = 903.37
config 105/412=[ -2.25 3.75] weight = 0.043 adjusted weight = 0.001 neff = 874.34
config 106/412=[ 0.00 4.50] weight = 0.563 adjusted weight = 0.008 neff = 808.06
config 107/412=[ 0.00 -4.50] weight = 0.693 adjusted weight = 0.010 neff = 783.52
config 108/412=[ 0.75 -4.50] weight = 0.478 adjusted weight = 0.007 neff = 761.08
config 109/412=[ -0.75 4.50] weight = 0.262 adjusted weight = 0.004 neff = 831.09
config 110/412=[ 0.75 4.50] weight = 0.570 adjusted weight = 0.008 neff = 785.54
config 111/412=[ -0.75 -4.50] weight = 0.630 adjusted weight = 0.009 neff = 806.16
config 112/412=[ -1.50 4.50] weight = 0.133 adjusted weight = 0.002 neff = 853.52
config 113/412=[ -1.50 -4.50] weight = 0.421 adjusted weight = 0.006 neff = 828.75
config 114/412=[ 1.50 4.50] weight = 0.403 adjusted weight = 0.006 neff = 763.09
config 115/412=[ 1.50 -4.50] weight = 0.217 adjusted weight = 0.003 neff = 738.81
config 116/412=[ 3.75 -3.00] weight = 0.003 adjusted weight = 0.000 neff = 677.13
config 117/412=[ -3.00 -3.75] weight = 0.041 adjusted weight = 0.001 neff = 876.38
config 118/412=[ 3.00 3.75] weight = 0.051 adjusted weight = 0.001 neff = 716.94
config 119/412=[ -3.00 3.75] weight = 0.007 adjusted weight = 0.000 neff = 897.13
config 120/412=[ 3.75 3.00] weight = 0.013 adjusted weight = 0.000 neff = 692.79
config 121/412=[ 3.00 -3.75] weight = 0.017 adjusted weight = 0.000 neff = 696.85
config 122/412=[ -3.75 -3.00] weight = 0.006 adjusted weight = 0.000 neff = 901.32
config 123/412=[ 2.25 -4.50] weight = 0.064 adjusted weight = 0.001 neff = 716.76
config 124/412=[ -2.25 -4.50] weight = 0.166 adjusted weight = 0.002 neff = 851.54
config 125/412=[ -2.25 4.50] weight = 0.032 adjusted weight = 0.000 neff = 876.38
config 126/412=[ 2.25 4.50] weight = 0.197 adjusted weight = 0.003 neff = 740.73
config 127/412=[ 0.00 5.25] weight = 0.438 adjusted weight = 0.006 neff = 810.11
config 128/412=[ -0.75 -5.25] weight = 0.628 adjusted weight = 0.009 neff = 804.05
config 129/412=[ 0.00 -5.25] weight = 0.630 adjusted weight = 0.009 neff = 781.49
config 130/412=[ 3.75 3.75] weight = 0.011 adjusted weight = 0.000 neff = 695.06
config 131/412=[ -0.75 5.25] weight = 0.237 adjusted weight = 0.003 neff = 832.91
config 132/412=[ -3.75 -3.75] weight = 0.006 adjusted weight = 0.000 neff = 899.22
config 133/412=[ 0.75 -5.25] weight = 0.389 adjusted weight = 0.006 neff = 759.16
config 134/412=[ 0.75 5.25] weight = 0.490 adjusted weight = 0.007 neff = 787.51
config 135/412=[ 3.75 -3.75] weight = 0.003 adjusted weight = 0.000 neff = 675.19
config 136/412=[ -3.00 -4.50] weight = 0.040 adjusted weight = 0.001 neff = 874.45
config 137/412=[ 3.00 -4.50] weight = 0.014 adjusted weight = 0.000 neff = 694.87
config 138/412=[ -3.00 4.50] weight = 0.005 adjusted weight = 0.000 neff = 899.19
config 139/412=[ 3.00 4.50] weight = 0.050 adjusted weight = 0.001 neff = 718.90
config 140/412=[ -1.50 5.25] weight = 0.093 adjusted weight = 0.001 neff = 855.62
config 141/412=[ 1.50 5.25] weight = 0.358 adjusted weight = 0.005 neff = 765.04
config 142/412=[ -1.50 -5.25] weight = 0.408 adjusted weight = 0.006 neff = 826.71
config 143/412=[ 1.50 -5.25] weight = 0.174 adjusted weight = 0.003 neff = 736.88
config 144/412=[ 2.25 5.25] weight = 0.173 adjusted weight = 0.003 neff = 742.74
config 145/412=[ -2.25 5.25] weight = 0.023 adjusted weight = 0.000 neff = 878.43
config 146/412=[ -2.25 -5.25] weight = 0.159 adjusted weight = 0.002 neff = 849.56
config 147/412=[ 2.25 -5.25] weight = 0.050 adjusted weight = 0.001 neff = 714.85
config 148/412=[ 3.75 4.50] weight = 0.013 adjusted weight = 0.000 neff = 696.74
config 149/412=[ -3.75 -4.50] weight = 0.007 adjusted weight = 0.000 neff = 897.18
config 150/412=[ 0.00 -6.00] weight = 0.559 adjusted weight = 0.008 neff = 779.49
config 151/412=[ 0.00 6.00] weight = 0.318 adjusted weight = 0.005 neff = 812.18
config 152/412=[ 3.00 5.25] weight = 0.053 adjusted weight = 0.001 neff = 720.70
config 153/412=[ 0.75 -6.00] weight = 0.352 adjusted weight = 0.005 neff = 757.09
config 154/412=[ -3.00 5.25] weight = 0.003 adjusted weight = 0.000 neff = 901.27
config 155/412=[ -0.75 -6.00] weight = 0.572 adjusted weight = 0.008 neff = 802.04
config 156/412=[ 3.00 -5.25] weight = 0.010 adjusted weight = 0.000 neff = 693.05
config 157/412=[ -3.00 -5.25] weight = 0.046 adjusted weight = 0.001 neff = 872.28
config 158/412=[ 0.75 6.00] weight = 0.369 adjusted weight = 0.005 neff = 789.57
config 159/412=[ -0.75 6.00] weight = 0.153 adjusted weight = 0.002 neff = 835.08
config 160/412=[ 1.50 6.00] weight = 0.281 adjusted weight = 0.004 neff = 767.08
config 161/412=[ -1.50 -6.00] weight = 0.392 adjusted weight = 0.006 neff = 824.68
config 162/412=[ -1.50 6.00] weight = 0.064 adjusted weight = 0.001 neff = 857.67
config 163/412=[ 1.50 -6.00] weight = 0.150 adjusted weight = 0.002 neff = 734.86
config 164/412=[ 2.25 -6.00] weight = 0.043 adjusted weight = 0.001 neff = 712.82
config 165/412=[ -2.25 -6.00] weight = 0.158 adjusted weight = 0.002 neff = 847.52
config 166/412=[ -2.25 6.00] weight = 0.014 adjusted weight = 0.000 neff = 880.60
config 167/412=[ 2.25 6.00] weight = 0.139 adjusted weight = 0.002 neff = 744.77
config 168/412=[ -3.75 -5.25] weight = 0.008 adjusted weight = 0.000 neff = 895.14
config 169/412=[ 3.75 5.25] weight = 0.012 adjusted weight = 0.000 neff = 698.71
config 170/412=[ -3.00 -6.00] weight = 0.047 adjusted weight = 0.001 neff = 870.25
config 171/412=[ 3.00 6.00] weight = 0.045 adjusted weight = 0.001 neff = 722.69
config 172/412=[ 3.00 -6.00] weight = 0.008 adjusted weight = 0.000 neff = 691.05
config 173/412=[ 0.00 -6.75] weight = 0.491 adjusted weight = 0.007 neff = 777.49
config 174/412=[ 0.00 6.75] weight = 0.215 adjusted weight = 0.003 neff = 814.24
config 175/412=[ -0.75 6.75] weight = 0.115 adjusted weight = 0.002 neff = 836.97
config 176/412=[ 0.75 -6.75] weight = 0.302 adjusted weight = 0.004 neff = 755.10
config 177/412=[ -0.75 -6.75] weight = 0.497 adjusted weight = 0.007 neff = 800.10
config 178/412=[ 0.75 6.75] weight = 0.242 adjusted weight = 0.004 neff = 791.70
config 179/412=[ -1.50 6.75] weight = 0.037 adjusted weight = 0.001 neff = 859.85
config 180/412=[ 1.50 6.75] weight = 0.199 adjusted weight = 0.003 neff = 769.15
config 181/412=[ 1.50 -6.75] weight = 0.123 adjusted weight = 0.002 neff = 732.89
config 182/412=[ -1.50 -6.75] weight = 0.326 adjusted weight = 0.005 neff = 822.83
config 183/412=[ -3.75 -6.00] weight = 0.007 adjusted weight = 0.000 neff = 893.27
config 184/412=[ 3.75 6.00] weight = 0.011 adjusted weight = 0.000 neff = 700.68
config 185/412=[ -2.25 -6.75] weight = 0.168 adjusted weight = 0.002 neff = 845.39
config 186/412=[ -2.25 6.75] weight = 0.009 adjusted weight = 0.000 neff = 882.58
config 187/412=[ 2.25 6.75] weight = 0.105 adjusted weight = 0.002 neff = 746.79
config 188/412=[ 2.25 -6.75] weight = 0.033 adjusted weight = 0.000 neff = 710.89
config 189/412=[ 3.00 6.75] weight = 0.037 adjusted weight = 0.001 neff = 724.63
config 190/412=[ -3.00 -6.75] weight = 0.047 adjusted weight = 0.001 neff = 868.22
config 191/412=[ 3.00 -6.75] weight = 0.006 adjusted weight = 0.000 neff = 689.08
config 192/412=[ 0.00 7.50] weight = 0.132 adjusted weight = 0.002 neff = 816.31
config 193/412=[ 0.00 -7.50] weight = 0.433 adjusted weight = 0.006 neff = 775.49
config 194/412=[ -0.75 -7.50] weight = 0.483 adjusted weight = 0.007 neff = 798.01
config 195/412=[ -0.75 7.50] weight = 0.068 adjusted weight = 0.001 neff = 839.05
config 196/412=[ 0.75 -7.50] weight = 0.256 adjusted weight = 0.004 neff = 753.13
config 197/412=[ 0.75 7.50] weight = 0.159 adjusted weight = 0.002 neff = 793.73
config 198/412=[ 1.50 -7.50] weight = 0.100 adjusted weight = 0.001 neff = 730.94
config 199/412=[ 1.50 7.50] weight = 0.136 adjusted weight = 0.002 neff = 771.17
config 200/412=[ -1.50 -7.50] weight = 0.352 adjusted weight = 0.005 neff = 820.64
config 201/412=[ -1.50 7.50] weight = 0.023 adjusted weight = 0.000 neff = 861.83
config 202/412=[ -3.75 -6.75] weight = 0.009 adjusted weight = 0.000 neff = 891.03
config 203/412=[ 3.75 6.75] weight = 0.009 adjusted weight = 0.000 neff = 702.67
config 204/412=[ -2.25 7.50] weight = 0.005 adjusted weight = 0.000 neff = 884.67
config 205/412=[ 2.25 -7.50] weight = 0.026 adjusted weight = 0.000 neff = 708.96
config 206/412=[ 2.25 7.50] weight = 0.073 adjusted weight = 0.001 neff = 748.82
config 207/412=[ -2.25 -7.50] weight = 0.164 adjusted weight = 0.002 neff = 843.38
config 208/412=[ -3.00 -7.50] weight = 0.047 adjusted weight = 0.001 neff = 866.22
config 209/412=[ 3.00 -7.50] weight = 0.005 adjusted weight = 0.000 neff = 687.25
config 210/412=[ 3.00 7.50] weight = 0.025 adjusted weight = 0.000 neff = 726.71
config 211/412=[ 0.00 -8.25] weight = 0.377 adjusted weight = 0.005 neff = 773.51
config 212/412=[ 0.00 8.25] weight = 0.074 adjusted weight = 0.001 neff = 818.37
config 213/412=[ 0.75 -8.25] weight = 0.215 adjusted weight = 0.003 neff = 751.17
config 214/412=[ 0.75 8.25] weight = 0.096 adjusted weight = 0.001 neff = 795.73
config 215/412=[ -0.75 8.25] weight = 0.037 adjusted weight = 0.001 neff = 841.11
config 216/412=[ -0.75 -8.25] weight = 0.408 adjusted weight = 0.006 neff = 796.10
config 217/412=[ 1.50 8.25] weight = 0.077 adjusted weight = 0.001 neff = 773.29
config 218/412=[ -1.50 -8.25] weight = 0.307 adjusted weight = 0.004 neff = 818.73
config 219/412=[ -3.75 -7.50] weight = 0.010 adjusted weight = 0.000 neff = 888.97
config 220/412=[ 3.75 7.50] weight = 0.006 adjusted weight = 0.000 neff = 704.66
config 221/412=[ 1.50 -8.25] weight = 0.065 adjusted weight = 0.001 neff = 729.31
config 222/412=[ -1.50 8.25] weight = 0.009 adjusted weight = 0.000 neff = 864.29
config 223/412=[ 2.25 8.25] weight = 0.045 adjusted weight = 0.001 neff = 750.85
config 224/412=[ -2.25 -8.25] weight = 0.120 adjusted weight = 0.002 neff = 841.73
config 225/412=[ 2.25 -8.25] weight = 0.020 adjusted weight = 0.000 neff = 707.10
config 226/412=[ 3.00 -8.25] weight = 0.004 adjusted weight = 0.000 neff = 685.32
config 227/412=[ 3.00 8.25] weight = 0.016 adjusted weight = 0.000 neff = 728.72
config 228/412=[ -3.00 -8.25] weight = 0.047 adjusted weight = 0.001 neff = 864.22
config 229/412=[ 0.00 -9.00] weight = 0.327 adjusted weight = 0.005 neff = 771.55
config 230/412=[ 0.00 9.00] weight = 0.036 adjusted weight = 0.001 neff = 820.45
config 231/412=[ 0.75 9.00] weight = 0.050 adjusted weight = 0.001 neff = 797.79
config 232/412=[ -0.75 -9.00] weight = 0.392 adjusted weight = 0.006 neff = 794.03
config 233/412=[ -0.75 9.00] weight = 0.018 adjusted weight = 0.000 neff = 843.19
config 234/412=[ 0.75 -9.00] weight = 0.180 adjusted weight = 0.003 neff = 749.22
config 235/412=[ -3.75 -8.25] weight = 0.010 adjusted weight = 0.000 neff = 886.94
config 236/412=[ 3.75 8.25] weight = 0.004 adjusted weight = 0.000 neff = 706.65
config 237/412=[ -1.50 9.00] weight = 0.005 adjusted weight = 0.000 neff = 866.09
config 238/412=[ -1.50 -9.00] weight = 0.308 adjusted weight = 0.004 neff = 816.64
config 239/412=[ 1.50 -9.00] weight = 0.065 adjusted weight = 0.001 neff = 727.09
config 240/412=[ 1.50 9.00] weight = 0.044 adjusted weight = 0.001 neff = 775.26
config 241/412=[ -2.25 -9.00] weight = 0.141 adjusted weight = 0.002 neff = 839.47
config 242/412=[ 2.25 9.00] weight = 0.025 adjusted weight = 0.000 neff = 752.87
config 243/412=[ 2.25 -9.00] weight = 0.015 adjusted weight = 0.000 neff = 705.20
config 244/412=[ -3.00 -9.00] weight = 0.051 adjusted weight = 0.001 neff = 862.11
config 245/412=[ 3.00 -9.00] weight = 0.003 adjusted weight = 0.000 neff = 683.43
config 246/412=[ 3.00 9.00] weight = 0.009 adjusted weight = 0.000 neff = 730.74
config 247/412=[ 0.00 9.75] weight = 0.016 adjusted weight = 0.000 neff = 822.52
config 248/412=[ -3.75 -9.00] weight = 0.010 adjusted weight = 0.000 neff = 885.02
config 249/412=[ 0.00 -9.75] weight = 0.282 adjusted weight = 0.004 neff = 769.60
config 250/412=[ -0.75 -9.75] weight = 0.351 adjusted weight = 0.005 neff = 792.06
config 251/412=[ -0.75 9.75] weight = 0.007 adjusted weight = 0.000 neff = 845.36
config 252/412=[ 0.75 -9.75] weight = 0.141 adjusted weight = 0.002 neff = 747.37
config 253/412=[ 0.75 9.75] weight = 0.022 adjusted weight = 0.000 neff = 799.85
config 254/412=[ 1.50 9.75] weight = 0.020 adjusted weight = 0.000 neff = 777.31
config 255/412=[ 1.50 -9.75] weight = 0.053 adjusted weight = 0.001 neff = 725.17
config 256/412=[ -1.50 -9.75] weight = 0.286 adjusted weight = 0.004 neff = 814.65
config 257/412=[ 2.25 -9.75] weight = 0.013 adjusted weight = 0.000 neff = 703.24
config 258/412=[ 2.25 9.75] weight = 0.012 adjusted weight = 0.000 neff = 754.99
config 259/412=[ -2.25 -9.75] weight = 0.151 adjusted weight = 0.002 neff = 837.35
config 260/412=[ 3.00 9.75] weight = 0.005 adjusted weight = 0.000 neff = 732.68
config 261/412=[ -3.00 -9.75] weight = 0.050 adjusted weight = 0.001 neff = 860.14
config 262/412=[ -3.75 -9.75] weight = 0.011 adjusted weight = 0.000 neff = 882.92
config 263/412=[ 0.00 10.50] weight = 0.006 adjusted weight = 0.000 neff = 824.62
config 264/412=[ 0.00 -10.50] weight = 0.207 adjusted weight = 0.003 neff = 767.87
config 265/412=[ -0.75 -10.50] weight = 0.313 adjusted weight = 0.005 neff = 790.11
config 266/412=[ 0.75 -10.50] weight = 0.124 adjusted weight = 0.002 neff = 745.39
config 267/412=[ 0.75 10.50] weight = 0.007 adjusted weight = 0.000 neff = 802.28
config 268/412=[ -1.50 -10.50] weight = 0.202 adjusted weight = 0.003 neff = 813.04
config 269/412=[ 1.50 10.50] weight = 0.008 adjusted weight = 0.000 neff = 779.38
config 270/412=[ 1.50 -10.50] weight = 0.040 adjusted weight = 0.001 neff = 723.35
config 271/412=[ 2.25 10.50] weight = 0.004 adjusted weight = 0.000 neff = 757.28
config 272/412=[ 2.25 -10.50] weight = 0.010 adjusted weight = 0.000 neff = 701.38
config 273/412=[ -2.25 -10.50] weight = 0.145 adjusted weight = 0.002 neff = 835.36
config 274/412=[ -3.00 -10.50] weight = 0.051 adjusted weight = 0.001 neff = 858.13
config 275/412=[ -3.75 -10.50] weight = 0.011 adjusted weight = 0.000 neff = 880.93
config 276/412=[ 0.00 -11.25] weight = 0.209 adjusted weight = 0.003 neff = 765.75
config 277/412=[ 0.75 -11.25] weight = 0.103 adjusted weight = 0.002 neff = 743.48
config 278/412=[ -0.75 -11.25] weight = 0.279 adjusted weight = 0.004 neff = 788.18
config 279/412=[ 1.50 -11.25] weight = 0.034 adjusted weight = 0.000 neff = 721.42
config 280/412=[ -1.50 -11.25] weight = 0.186 adjusted weight = 0.003 neff = 811.08
config 281/412=[ 2.25 -11.25] weight = 0.006 adjusted weight = 0.000 neff = 699.83
config 282/412=[ -2.25 -11.25] weight = 0.105 adjusted weight = 0.002 neff = 833.76
config 283/412=[ -3.00 -11.25] weight = 0.050 adjusted weight = 0.001 neff = 856.15
config 284/412=[ -3.75 -11.25] weight = 0.012 adjusted weight = 0.000 neff = 878.93
config 285/412=[ 0.00 -12.00] weight = 0.179 adjusted weight = 0.003 neff = 763.86
config 286/412=[ -0.75 -12.00] weight = 0.185 adjusted weight = 0.003 neff = 786.65
config 287/412=[ 0.75 -12.00] weight = 0.086 adjusted weight = 0.001 neff = 741.62
config 288/412=[ -1.50 -12.00] weight = 0.225 adjusted weight = 0.003 neff = 808.81
config 289/412=[ 1.50 -12.00] weight = 0.022 adjusted weight = 0.000 neff = 719.87
config 290/412=[ 2.25 -12.00] weight = 0.006 adjusted weight = 0.000 neff = 697.72
config 291/412=[ -2.25 -12.00] weight = 0.132 adjusted weight = 0.002 neff = 831.46
config 292/412=[ -3.00 -12.00] weight = 0.038 adjusted weight = 0.001 neff = 854.56
config 293/412=[ -3.75 -12.00] weight = 0.012 adjusted weight = 0.000 neff = 876.99
config 294/412=[ 0.00 -12.75] weight = 0.153 adjusted weight = 0.002 neff = 761.99
config 295/412=[ -0.75 -12.75] weight = 0.164 adjusted weight = 0.002 neff = 784.76
config 296/412=[ 0.75 -12.75] weight = 0.071 adjusted weight = 0.001 neff = 739.78
config 297/412=[ 1.50 -12.75] weight = 0.022 adjusted weight = 0.000 neff = 717.76
config 298/412=[ -1.50 -12.75] weight = 0.158 adjusted weight = 0.002 neff = 807.25
config 299/412=[ -2.25 -12.75] weight = 0.095 adjusted weight = 0.001 neff = 829.89
config 300/412=[ 2.25 -12.75] weight = 0.004 adjusted weight = 0.000 neff = 696.23
config 301/412=[ -3.00 -12.75] weight = 0.049 adjusted weight = 0.001 neff = 852.26
config 302/412=[ -3.75 -12.75] weight = 0.013 adjusted weight = 0.000 neff = 875.02
config 303/412=[ 0.00 -13.50] weight = 0.132 adjusted weight = 0.002 neff = 760.15
config 304/412=[ -0.75 -13.50] weight = 0.194 adjusted weight = 0.003 neff = 782.52
config 305/412=[ 0.75 -13.50] weight = 0.059 adjusted weight = 0.001 neff = 737.96
config 306/412=[ -1.50 -13.50] weight = 0.189 adjusted weight = 0.003 neff = 805.02
config 307/412=[ 1.50 -13.50] weight = 0.014 adjusted weight = 0.000 neff = 716.27
config 308/412=[ -2.25 -13.50] weight = 0.091 adjusted weight = 0.001 neff = 827.99
config 309/412=[ 2.25 -13.50] weight = 0.003 adjusted weight = 0.000 neff = 694.47
config 310/412=[ -3.00 -13.50] weight = 0.037 adjusted weight = 0.001 neff = 850.71
config 311/412=[ -3.75 -13.50] weight = 0.013 adjusted weight = 0.000 neff = 873.11
config 312/412=[ 0.00 -14.25] weight = 0.113 adjusted weight = 0.002 neff = 758.35
config 313/412=[ -0.75 -14.25] weight = 0.172 adjusted weight = 0.003 neff = 780.69
config 314/412=[ 0.75 -14.25] weight = 0.049 adjusted weight = 0.001 neff = 736.19
config 315/412=[ -1.50 -14.25] weight = 0.173 adjusted weight = 0.003 neff = 803.17
config 316/412=[ 1.50 -14.25] weight = 0.012 adjusted weight = 0.000 neff = 714.52
config 317/412=[ -2.25 -14.25] weight = 0.086 adjusted weight = 0.001 neff = 826.12
config 318/412=[ -3.00 -14.25] weight = 0.048 adjusted weight = 0.001 neff = 848.47
config 319/412=[ -3.75 -14.25] weight = 0.013 adjusted weight = 0.000 neff = 871.19
config 320/412=[ 0.00 -15.00] weight = 0.078 adjusted weight = 0.001 neff = 756.88
config 321/412=[ 0.75 -15.00] weight = 0.041 adjusted weight = 0.001 neff = 734.45
config 322/412=[ -0.75 -15.00] weight = 0.153 adjusted weight = 0.002 neff = 778.90
config 323/412=[ 1.50 -15.00] weight = 0.012 adjusted weight = 0.000 neff = 712.52
config 324/412=[ -1.50 -15.00] weight = 0.122 adjusted weight = 0.002 neff = 801.69
config 325/412=[ -2.25 -15.00] weight = 0.108 adjusted weight = 0.002 neff = 823.93
config 326/412=[ -3.00 -15.00] weight = 0.047 adjusted weight = 0.001 neff = 846.60
config 327/412=[ -3.75 -15.00] weight = 0.013 adjusted weight = 0.000 neff = 869.34
config 328/412=[ 0.00 -15.75] weight = 0.064 adjusted weight = 0.001 neff = 755.22
config 329/412=[ 0.75 -15.75] weight = 0.034 adjusted weight = 0.000 neff = 732.76
config 330/412=[ -0.75 -15.75] weight = 0.135 adjusted weight = 0.002 neff = 777.15
config 331/412=[ 1.50 -15.75] weight = 0.009 adjusted weight = 0.000 neff = 710.86
config 332/412=[ -1.50 -15.75] weight = 0.112 adjusted weight = 0.002 neff = 799.92
config 333/412=[ -2.25 -15.75] weight = 0.102 adjusted weight = 0.001 neff = 822.13
config 334/412=[ -3.00 -15.75] weight = 0.046 adjusted weight = 0.001 neff = 844.78
config 335/412=[ -3.75 -15.75] weight = 0.013 adjusted weight = 0.000 neff = 867.51
config 336/412=[ 0.00 -16.50] weight = 0.055 adjusted weight = 0.001 neff = 753.55
config 337/412=[ 0.75 -16.50] weight = 0.029 adjusted weight = 0.000 neff = 731.12
config 338/412=[ -0.75 -16.50] weight = 0.120 adjusted weight = 0.002 neff = 775.44
config 339/412=[ 1.50 -16.50] weight = 0.008 adjusted weight = 0.000 neff = 709.26
config 340/412=[ -1.50 -16.50] weight = 0.103 adjusted weight = 0.001 neff = 798.19
config 341/412=[ -2.25 -16.50] weight = 0.097 adjusted weight = 0.001 neff = 820.38
config 342/412=[ -3.00 -16.50] weight = 0.045 adjusted weight = 0.001 neff = 843.00
config 343/412=[ -3.75 -16.50] weight = 0.014 adjusted weight = 0.000 neff = 865.71
config 344/412=[ 0.00 -17.25] weight = 0.048 adjusted weight = 0.001 neff = 751.93
config 345/412=[ -0.75 -17.25] weight = 0.081 adjusted weight = 0.001 neff = 774.16
config 346/412=[ 0.75 -17.25] weight = 0.024 adjusted weight = 0.000 neff = 729.54
config 347/412=[ -1.50 -17.25] weight = 0.122 adjusted weight = 0.002 neff = 796.17
config 348/412=[ 1.50 -17.25] weight = 0.005 adjusted weight = 0.000 neff = 708.00
config 349/412=[ -2.25 -17.25] weight = 0.070 adjusted weight = 0.001 neff = 819.02
config 350/412=[ -3.00 -17.25] weight = 0.044 adjusted weight = 0.001 neff = 841.27
config 351/412=[ -3.75 -17.25] weight = 0.014 adjusted weight = 0.000 neff = 863.94
config 352/412=[ 0.00 -18.00] weight = 0.043 adjusted weight = 0.001 neff = 750.32
config 353/412=[ -0.75 -18.00] weight = 0.072 adjusted weight = 0.001 neff = 772.58
config 354/412=[ 0.75 -18.00] weight = 0.020 adjusted weight = 0.000 neff = 728.03
config 355/412=[ -1.50 -18.00] weight = 0.112 adjusted weight = 0.002 neff = 794.55
config 356/412=[ 1.50 -18.00] weight = 0.004 adjusted weight = 0.000 neff = 706.53
config 357/412=[ -2.25 -18.00] weight = 0.066 adjusted weight = 0.001 neff = 817.37
config 358/412=[ -3.00 -18.00] weight = 0.043 adjusted weight = 0.001 neff = 839.60
config 359/412=[ -3.75 -18.00] weight = 0.014 adjusted weight = 0.000 neff = 862.24
config 360/412=[ 0.00 -18.75] weight = 0.037 adjusted weight = 0.001 neff = 748.84
config 361/412=[ -0.75 -18.75] weight = 0.064 adjusted weight = 0.001 neff = 771.06
config 362/412=[ 0.75 -18.75] weight = 0.017 adjusted weight = 0.000 neff = 726.60
config 363/412=[ 1.50 -18.75] weight = 0.004 adjusted weight = 0.000 neff = 704.86
config 364/412=[ -1.50 -18.75] weight = 0.079 adjusted weight = 0.001 neff = 793.33
config 365/412=[ -2.25 -18.75] weight = 0.062 adjusted weight = 0.001 neff = 815.79
config 366/412=[ -3.00 -18.75] weight = 0.042 adjusted weight = 0.001 neff = 837.99
config 367/412=[ -3.75 -18.75] weight = 0.014 adjusted weight = 0.000 neff = 860.62
config 368/412=[ 0.00 -19.50] weight = 0.031 adjusted weight = 0.000 neff = 747.51
config 369/412=[ -0.75 -19.50] weight = 0.057 adjusted weight = 0.001 neff = 769.63
config 370/412=[ 0.75 -19.50] weight = 0.015 adjusted weight = 0.000 neff = 725.25
config 371/412=[ 1.50 -19.50] weight = 0.004 adjusted weight = 0.000 neff = 703.56
config 372/412=[ -1.50 -19.50] weight = 0.072 adjusted weight = 0.001 neff = 791.86
config 373/412=[ -2.25 -19.50] weight = 0.058 adjusted weight = 0.001 neff = 814.28
config 374/412=[ -3.00 -19.50] weight = 0.040 adjusted weight = 0.001 neff = 836.44
config 375/412=[ -3.75 -19.50] weight = 0.014 adjusted weight = 0.000 neff = 859.05
config 376/412=[ 0.00 -20.25] weight = 0.027 adjusted weight = 0.000 neff = 746.21
config 377/412=[ 0.75 -20.25] weight = 0.012 adjusted weight = 0.000 neff = 724.00
config 378/412=[ -0.75 -20.25] weight = 0.067 adjusted weight = 0.001 neff = 767.93
config 379/412=[ 1.50 -20.25] weight = 0.003 adjusted weight = 0.000 neff = 702.37
config 380/412=[ -1.50 -20.25] weight = 0.066 adjusted weight = 0.001 neff = 790.48
config 381/412=[ -2.25 -20.25] weight = 0.071 adjusted weight = 0.001 neff = 812.51
config 382/412=[ -3.00 -20.25] weight = 0.039 adjusted weight = 0.001 neff = 834.98
config 383/412=[ -3.75 -20.25] weight = 0.014 adjusted weight = 0.000 neff = 857.55
config 384/412=[ 0.00 -21.00] weight = 0.024 adjusted weight = 0.000 neff = 745.03
config 385/412=[ -0.75 -21.00] weight = 0.045 adjusted weight = 0.001 neff = 767.05
config 386/412=[ 0.75 -21.00] weight = 0.011 adjusted weight = 0.000 neff = 722.88
config 387/412=[ -1.50 -21.00] weight = 0.077 adjusted weight = 0.001 neff = 788.87
config 388/412=[ -2.25 -21.00] weight = 0.066 adjusted weight = 0.001 neff = 811.19
config 389/412=[ -3.00 -21.00] weight = 0.037 adjusted weight = 0.001 neff = 833.61
config 390/412=[ -3.75 -21.00] weight = 0.013 adjusted weight = 0.000 neff = 856.14
config 391/412=[ 0.00 -21.75] weight = 0.021 adjusted weight = 0.000 neff = 743.97
config 392/412=[ -0.75 -21.75] weight = 0.040 adjusted weight = 0.001 neff = 765.93
config 393/412=[ 0.75 -21.75] weight = 0.009 adjusted weight = 0.000 neff = 721.88
config 394/412=[ -1.50 -21.75] weight = 0.069 adjusted weight = 0.001 neff = 787.71
config 395/412=[ -2.25 -21.75] weight = 0.061 adjusted weight = 0.001 neff = 809.97
config 396/412=[ -3.00 -21.75] weight = 0.035 adjusted weight = 0.001 neff = 832.35
config 397/412=[ -3.75 -21.75] weight = 0.013 adjusted weight = 0.000 neff = 854.83
config 398/412=[ 0.00 -22.50] weight = 0.018 adjusted weight = 0.000 neff = 743.05
config 399/412=[ -0.75 -22.50] weight = 0.036 adjusted weight = 0.001 neff = 764.96
config 400/412=[ 0.75 -22.50] weight = 0.008 adjusted weight = 0.000 neff = 721.04
config 401/412=[ -1.50 -22.50] weight = 0.062 adjusted weight = 0.001 neff = 786.67
config 402/412=[ -2.25 -22.50] weight = 0.056 adjusted weight = 0.001 neff = 808.88
config 403/412=[ -3.00 -22.50] weight = 0.033 adjusted weight = 0.000 neff = 831.21
config 404/412=[ -3.75 -22.50] weight = 0.013 adjusted weight = 0.000 neff = 853.65
config 405/412=[ 0.00 -23.25] weight = 0.016 adjusted weight = 0.000 neff = 742.30
config 406/412=[ -0.75 -23.25] weight = 0.031 adjusted weight = 0.000 neff = 764.14
config 407/412=[ 0.75 -23.25] weight = 0.007 adjusted weight = 0.000 neff = 720.36
config 408/412=[ -1.50 -23.25] weight = 0.055 adjusted weight = 0.001 neff = 785.80
config 409/412=[ -2.25 -23.25] weight = 0.051 adjusted weight = 0.001 neff = 807.94
config 410/412=[ -3.00 -23.25] weight = 0.030 adjusted weight = 0.000 neff = 830.22
config 411/412=[ -3.75 -23.25] weight = 0.012 adjusted weight = 0.000 neff = 852.59
Done.
Expected effective number of parameters: 792.265(34.440), eqv.#replicates: 3.842
DIC:
Mean of Deviance................. 3787.12
Deviance at Mean................. 3091.18
Effective number of parameters... 695.936
DIC.............................. 4483.06
Marginal likelihood: Integration -2088.317470 Gaussian-approx -2090.422810
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d316380eca/Model.ini]
Preparations : 0.095 seconds
Approx inference: 1357.946 seconds [0.0|0.0|1.0|79.7|19.3]%
Output : 0.684 seconds
---------------------------------
Total : 1358.725 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d387508c] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d34c24a81f]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37a99b246]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d34c24a81f]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 3, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 5, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 2, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 2, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 2, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37fe4d759] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35aec7dd4]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37423e461]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d38f655a8]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d333b91799] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d33cbc5856] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d3714b9540] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31933d6dc] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d31a5f1271] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d357b3c63d] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35b9bfbc6] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d35daeb326] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/data.files/filee1d37873b3d6] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7f8c226022b0
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -2835.242296 fn= 1 theta= 3.990000 4.000000 range=[-1.273 4.574]
max.logdens= -2807.106407 fn= 5 theta= 3.218836 3.375675 range=[-1.197 4.665]
max.logdens= -2806.762378 fn= 7 theta= 3.208836 3.375675 range=[-1.196 4.666]
max.logdens= -2781.655795 fn= 11 theta= 2.761044 3.009796 range=[-1.176 4.716]
max.logdens= -2781.153714 fn= 12 theta= 2.751044 3.009796 range=[-1.176 4.716]
max.logdens= -2742.475038 fn= 16 theta= 2.240544 2.593800 range=[-1.187 4.772]
max.logdens= -2741.762430 fn= 18 theta= 2.230544 2.593800 range=[-1.187 4.772]
max.logdens= -2689.409165 fn= 21 theta= 1.679544 2.145435 range=[-1.203 4.835]
max.logdens= -2688.534056 fn= 23 theta= 1.669544 2.145435 range=[-1.204 4.836]
max.logdens= -2638.648138 fn= 26 theta= 1.156706 1.727571 range=[-1.229 4.892]
max.logdens= -2637.835798 fn= 27 theta= 1.146706 1.727571 range=[-1.230 4.892]
max.logdens= -2609.314757 fn= 31 theta= 0.769078 1.417769 range=[-1.267 4.925]
max.logdens= -2608.761239 fn= 32 theta= 0.759078 1.417769 range=[-1.268 4.925]
max.logdens= -2598.570706 fn= 36 theta= 0.538041 1.233119 range=[-1.299 4.940]
max.logdens= -2598.255175 fn= 37 theta= 0.528041 1.233119 range=[-1.300 4.940]
max.logdens= -2594.680614 fn= 41 theta= 0.320557 1.059300 range=[-1.335 4.953]
max.logdens= -2594.635740 fn= 42 theta= 0.310557 1.059300 range=[-1.336 4.953]
Iter=1 |grad|=6.24 |x-x.old|=3.33 |f-f.old|=241
max.logdens= -2594.459547 fn= 48 theta= 0.281061 1.088658 range=[-1.340 4.951]
max.logdens= -2594.421605 fn= 51 theta= 0.271061 1.098658 range=[-1.342 4.950]
max.logdens= -2594.419889 fn= 86 theta= 0.245039 1.114093 range=[-1.346 4.948]
max.logdens= -2594.418074 fn= 91 theta= 0.246340 1.113322 range=[-1.345 4.948]
max.logdens= -2594.416501 fn= 96 theta= 0.247576 1.112588 range=[-1.345 4.948]
max.logdens= -2594.415089 fn= 101 theta= 0.248750 1.111892 range=[-1.345 4.948]
max.logdens= -2594.414023 fn= 106 theta= 0.249866 1.111230 range=[-1.345 4.948]
max.logdens= -2594.413112 fn= 111 theta= 0.250925 1.110602 range=[-1.345 4.948]
max.logdens= -2594.412350 fn= 116 theta= 0.251932 1.110004 range=[-1.345 4.948]
max.logdens= -2594.411760 fn= 121 theta= 0.252889 1.109437 range=[-1.344 4.948]
Iter=2 |grad|=5.02 |x-x.old|=0.0556 |f-f.old|=0.23
max.logdens= -2594.045794 fn= 122 theta= 0.246244 1.219582 range=[-1.343 4.938]
max.logdens= -2594.023133 fn= 125 theta= 0.256244 1.219582 range=[-1.341 4.938]
max.logdens= -2594.011177 fn= 126 theta= 0.246244 1.229582 range=[-1.343 4.937]
max.logdens= -2593.504760 fn= 127 theta= 0.230463 1.504954 range=[-1.339 4.909]
max.logdens= -2593.502403 fn= 128 theta= 0.220463 1.504954 range=[-1.341 4.908]
max.logdens= -2593.487531 fn= 129 theta= 0.230463 1.494954 range=[-1.339 4.910]
max.logdens= -2593.465635 fn= 130 theta= 0.240463 1.504954 range=[-1.337 4.909]
max.logdens= -2593.465221 fn= 131 theta= 0.230463 1.514954 range=[-1.339 4.908]
max.logdens= -2593.432047 fn= 133 theta= 0.209682 1.880724 range=[-1.347 4.865]
max.logdens= -2593.423966 fn= 134 theta= 0.209682 1.870724 range=[-1.347 4.866]
max.logdens= -2593.422505 fn= 136 theta= 0.219682 1.880724 range=[-1.345 4.865]
max.logdens= -2593.374328 fn= 138 theta= 0.217431 1.740603 range=[-1.343 4.882]
max.logdens= -2593.360154 fn= 140 theta= 0.227431 1.740603 range=[-1.342 4.883]
Iter=3 |grad|=1.65 |x-x.old|=0.454 |f-f.old|=1.08
max.logdens= -2593.360095 fn= 147 theta= 0.223014 1.728615 range=[-1.342 4.884]
max.logdens= -2593.359697 fn= 151 theta= 0.224066 1.738240 range=[-1.342 4.883]
max.logdens= -2593.359120 fn= 152 theta= 0.224066 1.728240 range=[-1.342 4.884]
max.logdens= -2593.358690 fn= 157 theta= 0.224712 1.728010 range=[-1.342 4.884]
max.logdens= -2593.358387 fn= 163 theta= 0.225181 1.727843 range=[-1.342 4.884]
max.logdens= -2593.358097 fn= 167 theta= 0.225542 1.727714 range=[-1.342 4.884]
max.logdens= -2593.357930 fn= 173 theta= 0.225834 1.727610 range=[-1.342 4.884]
max.logdens= -2593.357814 fn= 179 theta= 0.226073 1.727525 range=[-1.342 4.884]
max.logdens= -2593.357722 fn= 182 theta= 0.226280 1.727452 range=[-1.342 4.884]
max.logdens= -2593.357644 fn= 189 theta= 0.226476 1.727382 range=[-1.341 4.884]
max.logdens= -2593.357471 fn= 192 theta= 0.226662 1.727315 range=[-1.341 4.884]
max.logdens= -2593.357389 fn= 198 theta= 0.226839 1.727252 range=[-1.341 4.884]
max.logdens= -2593.357367 fn= 202 theta= 0.227008 1.727192 range=[-1.341 4.884]
max.logdens= -2593.357290 fn= 208 theta= 0.227167 1.727136 range=[-1.341 4.884]
max.logdens= -2593.357289 fn= 213 theta= 0.227319 1.727081 range=[-1.341 4.884]
max.logdens= -2593.357282 fn= 223 theta= 0.227319 1.727081 range=[-1.341 4.884]
Iter=4 |grad|=0.319 |x-x.old|=0.00742 |f-f.old|=0.0163 Reached numerical limit!
Number of function evaluations = 231
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
Mode not sufficient accurate; switch to a stupid local search strategy.
176.878894 12.675033
12.675033 21.816120
Eigenvectors of the Hessian
0.996719 -0.080936
0.080936 0.996719
Eigenvalues of the Hessian
177.908136
20.786878
StDev/Correlation matrix (scaled inverse Hessian)
0.076806 -0.204043
0.218698
Compute corrected stdev for theta[0]: negative 1.048952 positive 1.210702
Compute corrected stdev for theta[1]: negative 1.613750 positive 2.403609
max.logdens= -2593.373867 fn= 251 theta= 0.227319 1.637081 range=[-1.340 4.894]
config 0=[ 0.00 0.00] log(rel.dens)=-0.06, [1] accept, compute, 10.76s
config 1=[ 0.00 -0.75] log(rel.dens)=-0.13, [2] accept, compute, 10.77s
config 2=[ 0.75 0.00] log(rel.dens)=-0.30, [0] accept, compute, 10.79s
config 3=[ -0.75 0.00] log(rel.dens)=-0.42, [3] accept, compute, 10.84s
config 4=[ 0.75 -0.75] log(rel.dens)=-0.53, [3] accept, compute, 10.14s
config 5=[ 0.00 0.75] log(rel.dens)=-0.02, [1] accept, compute, 10.24s
config 6=[ -0.75 0.75] log(rel.dens)=-0.44, [2] accept, compute, 10.25s
config 7=[ -0.75 -0.75] log(rel.dens)=-0.62, [0] accept, compute, 10.26s
config 8=[ 0.00 -1.50] log(rel.dens)=-0.50, [1] accept, compute, 9.98s
config 9=[ 0.75 0.75] log(rel.dens)=-0.18, [3] accept, compute, 10.01s
config 10=[ -1.50 0.00] log(rel.dens)=-1.11, [2] accept, compute, 10.08s
config 11=[ 1.50 0.00] log(rel.dens)=-0.75, [0] accept, compute, 10.11s
config 12=[ 0.00 1.50] log(rel.dens)=-0.29, [1] accept, compute, 10.22s
config 13=[ -0.75 1.50] log(rel.dens)=-0.77, [3] accept, compute, 10.37s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.58, [2] accept, compute, 10.46s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.67, [0] accept, compute, 10.42s
config 16=[ 0.75 1.50] log(rel.dens)=-0.30, [1] accept, compute, 11.92s
config 17=[ -1.50 -0.75] log(rel.dens)=-1.24, [3] accept, compute, 11.97s
config 18=[ 1.50 -0.75] log(rel.dens)=-0.95, [2] accept, compute, 11.82s
config 19=[ -1.50 0.75] log(rel.dens)=-1.29, [0] accept, compute, 11.97s
config 20=[ 1.50 0.75] log(rel.dens)=-0.79, [1] accept, compute, 10.00s
config 21=[ -1.50 -1.50] log(rel.dens)=-1.39, [3] accept, compute, 10.02s
config 22=[ 1.50 1.50] log(rel.dens)=-0.87, [2] accept, compute, 10.09s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.17, [0] accept, compute, 10.06s
config 24=[ 0.00 -2.25] log(rel.dens)=-1.10, [3] accept, compute, 9.99s
config 25=[ -1.50 1.50] log(rel.dens)=-1.36, [1] accept, compute, 10.25s
config 26=[ 2.25 0.00] log(rel.dens)=-1.84, [2] accept, compute, 10.03s
config 27=[ -2.25 0.00] log(rel.dens)=-2.29, [0] accept, compute, 10.24s
config 28=[ -0.75 -2.25] log(rel.dens)=-1.14, [2] accept, compute, 9.89s
config 29=[ 0.00 2.25] log(rel.dens)=-0.38, [3] accept, compute, 10.06s
config 30=[ 2.25 0.75] log(rel.dens)=-1.72, [1] accept, compute, 10.13s
config 31=[ 0.75 -2.25] log(rel.dens)=-1.04, [0] accept, compute, 9.95s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.61, [2] accept, compute, 9.90s
config 33=[ 2.25 -0.75] log(rel.dens)=-1.88, [3] accept, compute, 10.07s
config 34=[ -0.75 2.25] log(rel.dens)=-0.80, [1] accept, compute, 10.04s
config 35=[ -2.25 0.75] log(rel.dens)=-2.43, [0] accept, compute, 10.09s
config 36=[ 0.75 2.25] log(rel.dens)=-0.44, [2] accept, compute, 10.59s
config 37=[ 2.25 -1.50] log(rel.dens)=-2.14, [1] accept, compute, 10.45s
config 38=[ -2.25 -1.50] log(rel.dens)=-2.56, [3] accept, compute, 10.73s
config 39=[ -1.50 -2.25] log(rel.dens)=-2.07, [0] accept, compute, 10.44s
config 40=[ -1.50 2.25] log(rel.dens)=-1.71, [1] accept, compute, 10.53s
config 41=[ -2.25 1.50] log(rel.dens)=-2.71, [0] accept, compute, 10.57s
config 42=[ 1.50 -2.25] log(rel.dens)=-1.59, [3] accept, compute, 10.78s
config 43=[ 2.25 1.50] log(rel.dens)=-2.00, [2] accept, compute, 11.48s
config 44=[ 1.50 2.25] log(rel.dens)=-0.96, [1] accept, compute, 10.84s
config 45=[ 0.00 3.00] log(rel.dens)=-0.72, [0] accept, compute, 10.62s
config 46=[ 3.00 0.00] log(rel.dens)=-3.14, [3] accept, compute, 10.75s
config 47=[ 0.00 -3.00] log(rel.dens)=-1.55, [2] accept, compute, 10.79s
config 48=[ -3.00 0.00] log(rel.dens)=-4.04, [1] accept, compute, 10.14s
config 49=[ -0.75 -3.00] log(rel.dens)=-1.83, [0] accept, compute, 10.17s
config 50=[ -3.00 0.75] log(rel.dens)=-4.25, [3] accept, compute, 10.27s
config 51=[ 3.00 0.75] log(rel.dens)=-3.11, [2] accept, compute, 10.32s
config 52=[ -0.75 3.00] log(rel.dens)=-1.19, [1] accept, compute, 11.37s
config 53=[ 0.75 -3.00] log(rel.dens)=-1.88, [0] accept, compute, 11.28s
config 54=[ 0.75 3.00] log(rel.dens)=-0.73, [3] accept, compute, 11.23s
config 55=[ 3.00 -0.75] log(rel.dens)=-3.29, [2] accept, compute, 11.35s
config 56=[ 2.25 2.25] log(rel.dens)=-1.91, [0] accept, compute, 9.98s
config 57=[ -3.00 -0.75] log(rel.dens)=-4.02, [1] accept, compute, 10.05s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.53, [3] accept, compute, 10.03s
config 59=[ -2.25 -2.25] log(rel.dens)=-3.00, [2] accept, compute, 10.13s
config 60=[ -2.25 2.25] log(rel.dens)=-3.13, [0] accept, compute, 10.08s
config 61=[ -1.50 3.00] log(rel.dens)=-2.17, [1] accept, compute, 10.19s
config 62=[ -3.00 -1.50] log(rel.dens)=-4.21, [3] accept, compute, 10.16s
config 63=[ 1.50 -3.00] log(rel.dens)=-2.20, [2] accept, compute, 10.12s
config 64=[ 3.00 1.50] log(rel.dens)=-3.17, [0] accept, compute, 10.25s
config 65=[ 1.50 3.00] log(rel.dens)=-1.20, [1] accept, compute, 10.33s
config 66=[ -3.00 1.50] log(rel.dens)=-4.71, [3] accept, compute, 10.32s
config 67=[ -1.50 -3.00] log(rel.dens)=-2.53, [2] accept, compute, 10.42s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.62, [0] accept, compute, 10.02s
config 69=[ -2.25 -3.00] log(rel.dens)=-3.68, [1] accept, compute, 10.13s
config 70=[ 2.25 -3.00] log(rel.dens)=-3.09, [3] accept, compute, 10.01s
config 71=[ 0.00 -3.75] log(rel.dens)=-2.66, [2] accept, compute, 9.93s
config 72=[ -3.00 2.25] log(rel.dens)=-5.09, [0] accept, compute, 10.63s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.83, [1] accept, compute, 10.60s
config 74=[ 3.00 2.25] log(rel.dens)=-3.28, [3] accept, compute, 10.51s
config 75=[ -3.00 -2.25] log(rel.dens)=-4.61, [2] accept, compute, 10.57s
config 76=[ 2.25 3.00] log(rel.dens)=-2.13, [0] accept, compute, 9.96s
config 77=[ 0.00 3.75] log(rel.dens)=-1.14, [1] accept, compute, 9.99s
config 78=[ -3.75 0.00] log(rel.dens)=-6.31, reject, 0.30s
config 79=[ -2.25 3.00] log(rel.dens)=-3.67, [3] accept, compute, 10.07s
config 80=[ 3.75 0.00] log(rel.dens)=-4.92, [2] accept, compute, 10.08s
config 81=[ -0.75 3.75] log(rel.dens)=-1.74, [1] accept, compute, 9.97s
config 82=[ 0.75 -3.75] log(rel.dens)=-2.55, [0] accept, compute, 9.99s
config 83=[ 3.75 0.75] log(rel.dens)=-4.90, [3] accept, compute, 10.01s
config 84=[ 3.75 -0.75] log(rel.dens)=-5.00, [2] accept, compute, 9.86s
config 85=[ 0.75 3.75] log(rel.dens)=-1.32, [1] accept, compute, 9.87s
config 86=[ -0.75 -3.75] log(rel.dens)=-2.98, [0] accept, compute, 9.84s
config 87=[ -1.50 3.75] log(rel.dens)=-2.74, [3] accept, compute, 10.10s
config 88=[ 3.75 1.50] log(rel.dens)=-5.01, [2] accept, compute, 9.90s
config 89=[ 1.50 -3.75] log(rel.dens)=-3.00, [0] accept, compute, 10.28s
config 90=[ -1.50 -3.75] log(rel.dens)=-3.50, [1] accept, compute, 10.42s
config 91=[ 1.50 3.75] log(rel.dens)=-1.51, [3] accept, compute, 10.39s
config 92=[ 3.75 -1.50] log(rel.dens)=-5.32, [2] accept, compute, 10.21s
config 93=[ -3.00 -3.00] log(rel.dens)=-5.29, [0] accept, compute, 10.02s
config 94=[ 3.00 -3.00] log(rel.dens)=-4.32, [1] accept, compute, 10.04s
config 95=[ 3.00 3.00] log(rel.dens)=-3.69, [3] accept, compute, 9.93s
config 96=[ -3.00 3.00] log(rel.dens)=-5.73, [2] accept, compute, 10.05s
config 97=[ 2.25 3.75] log(rel.dens)=-2.39, [1] accept, compute, 10.07s
config 98=[ 2.25 -3.75] log(rel.dens)=-3.83, [0] accept, compute, 10.23s
config 99=[ -2.25 -3.75] log(rel.dens)=-4.67, [3] accept, compute, 10.14s
config 100=[ 3.75 -2.25] log(rel.dens)=-5.49, [2] accept, compute, 10.04s
config 101=[ 3.75 2.25] log(rel.dens)=-5.30, [1] accept, compute, 9.89s
config 102=[ -2.25 3.75] log(rel.dens)=-4.30, [0] accept, compute, 9.97s
config 103=[ 4.50 0.00] log(rel.dens)=-7.13, reject, 0.22s
config 104=[ 4.50 -0.75] log(rel.dens)=-7.10, reject, 0.33s
config 105=[ 0.00 4.50] log(rel.dens)=-1.63, [3] accept, compute, 9.98s
config 106=[ 0.00 -4.50] log(rel.dens)=-3.66, [2] accept, compute, 10.04s
config 107=[ 0.75 -4.50] log(rel.dens)=-3.68, [1] accept, compute, 10.32s
config 108=[ -0.75 4.50] log(rel.dens)=-2.26, [0] accept, compute, 10.25s
config 109=[ 0.75 4.50] log(rel.dens)=-1.58, [3] accept, compute, 10.33s
config 110=[ -0.75 -4.50] log(rel.dens)=-4.06, [2] accept, compute, 10.28s
config 111=[ -1.50 4.50] log(rel.dens)=-3.37, [1] accept, compute, 10.05s
config 112=[ -1.50 -4.50] log(rel.dens)=-4.78, [0] accept, compute, 9.93s
config 113=[ 1.50 4.50] log(rel.dens)=-1.94, [3] accept, compute, 9.90s
config 114=[ -3.00 -3.75] log(rel.dens)=-6.47, reject, 0.18s
config 115=[ 1.50 -4.50] log(rel.dens)=-4.06, [2] accept, compute, 9.98s
config 116=[ -3.00 3.75] log(rel.dens)=-6.39, reject, 0.28s
config 117=[ 3.75 -3.00] log(rel.dens)=-5.89, [1] accept, compute, 10.09s
config 118=[ 3.00 3.75] log(rel.dens)=-3.93, [3] accept, compute, 10.12s
config 119=[ 3.75 3.00] log(rel.dens)=-5.21, [2] accept, compute, 10.16s
config 120=[ 3.00 -3.75] log(rel.dens)=-5.00, [0] accept, compute, 10.09s
config 121=[ 2.25 -4.50] log(rel.dens)=-4.79, [1] accept, compute, 10.53s
config 122=[ -2.25 -4.50] log(rel.dens)=-5.97, [3] accept, compute, 10.38s
config 123=[ -2.25 4.50] log(rel.dens)=-5.04, [2] accept, compute, 10.49s
config 124=[ 2.25 4.50] log(rel.dens)=-2.71, [0] accept, compute, 10.44s
config 125=[ 0.00 5.25] log(rel.dens)=-2.19, [1] accept, compute, 10.35s
config 126=[ 0.00 -5.25] log(rel.dens)=-5.18, [3] accept, compute, 10.36s
config 127=[ 3.75 3.75] log(rel.dens)=-5.64, [0] accept, compute, 10.17s
config 128=[ -0.75 -5.25] log(rel.dens)=-5.61, [2] accept, compute, 10.60s
config 129=[ 3.75 -3.75] log(rel.dens)=-6.45, reject, 0.38s
config 130=[ -0.75 5.25] log(rel.dens)=-2.93, [1] accept, compute, 10.48s
config 131=[ 0.75 -5.25] log(rel.dens)=-5.17, [3] accept, compute, 10.55s
config 132=[ 0.75 5.25] log(rel.dens)=-2.00, [0] accept, compute, 10.53s
config 133=[ 3.00 -4.50] log(rel.dens)=-5.92, [2] accept, compute, 10.33s
config 134=[ -1.50 -5.25] log(rel.dens)=-6.42, reject, 0.37s
config 135=[ 3.00 4.50] log(rel.dens)=-3.97, [1] accept, compute, 10.16s
config 136=[ 1.50 5.25] log(rel.dens)=-2.30, [3] accept, compute, 10.17s
config 137=[ -1.50 5.25] log(rel.dens)=-4.07, [0] accept, compute, 10.53s
config 138=[ 2.25 -5.25] log(rel.dens)=-6.05, reject, 0.33s
config 139=[ 1.50 -5.25] log(rel.dens)=-5.41, [2] accept, compute, 10.38s
config 140=[ 0.00 -6.00] log(rel.dens)=-7.36, reject, 0.24s
config 141=[ 2.25 5.25] log(rel.dens)=-3.14, [1] accept, compute, 9.96s
config 142=[ -2.25 5.25] log(rel.dens)=-5.81, [3] accept, compute, 10.21s
config 143=[ 3.75 4.50] log(rel.dens)=-5.66, [0] accept, compute, 10.11s
config 144=[ 0.00 6.00] log(rel.dens)=-2.79, [2] accept, compute, 10.29s
config 145=[ 3.00 5.25] log(rel.dens)=-4.34, [1] accept, compute, 10.11s
config 146=[ 0.75 6.00] log(rel.dens)=-2.52, [3] accept, compute, 10.10s
config 147=[ -2.25 6.00] log(rel.dens)=-6.66, reject, 0.31s
config 148=[ -0.75 6.00] log(rel.dens)=-3.55, [0] accept, compute, 10.17s
config 149=[ 1.50 6.00] log(rel.dens)=-2.99, [2] accept, compute, 10.12s
config 150=[ -1.50 6.00] log(rel.dens)=-4.84, [1] accept, compute, 9.78s
config 151=[ 2.25 6.00] log(rel.dens)=-3.47, [3] accept, compute, 10.01s
config 152=[ 3.75 5.25] log(rel.dens)=-5.93, [0] accept, compute, 9.96s
config 153=[ 3.00 6.00] log(rel.dens)=-4.84, [2] accept, compute, 9.91s
config 154=[ 0.00 6.75] log(rel.dens)=-3.64, [1] accept, compute, 9.98s
config 155=[ -0.75 6.75] log(rel.dens)=-4.26, [3] accept, compute, 10.08s
config 156=[ 3.75 6.00] log(rel.dens)=-6.23, reject, 0.30s
config 157=[ 0.75 6.75] log(rel.dens)=-3.08, [0] accept, compute, 10.35s
config 158=[ -1.50 6.75] log(rel.dens)=-5.65, [2] accept, compute, 10.03s
config 159=[ 1.50 6.75] log(rel.dens)=-3.48, [1] accept, compute, 9.95s
config 160=[ 2.25 6.75] log(rel.dens)=-4.14, [3] accept, compute, 10.10s
config 161=[ 3.00 6.75] log(rel.dens)=-4.99, [0] accept, compute, 10.22s
config 162=[ 0.00 7.50] log(rel.dens)=-4.30, [2] accept, compute, 10.31s
config 163=[ -1.50 7.50] log(rel.dens)=-6.76, reject, 0.21s
config 164=[ -0.75 7.50] log(rel.dens)=-5.01, [1] accept, compute, 10.85s
config 165=[ 0.75 7.50] log(rel.dens)=-3.95, [3] accept, compute, 10.75s
config 166=[ 1.50 7.50] log(rel.dens)=-4.03, [0] accept, compute, 10.59s
config 167=[ 2.25 7.50] log(rel.dens)=-4.32, [2] accept, compute, 10.91s
config 168=[ 3.00 7.50] log(rel.dens)=-5.36, [1] accept, compute, 10.71s
config 169=[ 0.00 8.25] log(rel.dens)=-4.84, [3] accept, compute, 10.52s
config 170=[ 0.75 8.25] log(rel.dens)=-4.34, [0] accept, compute, 10.49s
config 171=[ -0.75 8.25] log(rel.dens)=-5.77, [2] accept, compute, 10.46s
config 172=[ 1.50 8.25] log(rel.dens)=-4.54, [1] accept, compute, 10.03s
config 173=[ 2.25 8.25] log(rel.dens)=-4.75, [3] accept, compute, 10.46s
config 174=[ 3.00 8.25] log(rel.dens)=-5.72, [0] accept, compute, 10.14s
config 175=[ -0.75 9.00] log(rel.dens)=-6.54, reject, 0.44s
config 176=[ 0.00 9.00] log(rel.dens)=-5.47, [2] accept, compute, 10.23s
config 177=[ 3.00 9.00] log(rel.dens)=-6.08, reject, 0.43s
config 178=[ 0.00 9.75] log(rel.dens)=-6.10, reject, 0.39s
config 179=[ 0.75 9.00] log(rel.dens)=-4.93, [1] accept, compute, 8.74s
config 180=[ 1.50 9.00] log(rel.dens)=-5.05, [0] accept, compute, 8.17s
config 181=[ 2.25 9.00] log(rel.dens)=-5.19, [3] accept, compute, 7.98s
Combine the densities with relative weights:
config 0/167=[ 0.00 0.00] weight = 0.961 adjusted weight = 0.037 neff = 847.45
config 1/167=[ 0.00 -0.75] weight = 0.896 adjusted weight = 0.034 neff = 846.92
config 2/167=[ 0.75 0.00] weight = 0.754 adjusted weight = 0.029 neff = 823.55
config 3/167=[ -0.75 0.00] weight = 0.667 adjusted weight = 0.026 neff = 871.79
config 4/167=[ 0.75 -0.75] weight = 0.600 adjusted weight = 0.023 neff = 823.48
config 5/167=[ 0.00 0.75] weight = 1.000 adjusted weight = 0.038 neff = 848.63
config 6/167=[ -0.75 0.75] weight = 0.656 adjusted weight = 0.025 neff = 873.24
config 7/167=[ -0.75 -0.75] weight = 0.546 adjusted weight = 0.021 neff = 871.18
config 8/167=[ 0.00 -1.50] weight = 0.620 adjusted weight = 0.024 neff = 847.47
config 9/167=[ 0.75 0.75] weight = 0.851 adjusted weight = 0.033 neff = 824.42
config 10/167=[ -1.50 0.00] weight = 0.336 adjusted weight = 0.013 neff = 896.15
config 11/167=[ 1.50 0.00] weight = 0.483 adjusted weight = 0.019 neff = 799.63
config 12/167=[ 0.00 1.50] weight = 0.766 adjusted weight = 0.029 neff = 850.75
config 13/167=[ -0.75 1.50] weight = 0.470 adjusted weight = 0.018 neff = 875.59
config 14/167=[ 0.75 -1.50] weight = 0.568 adjusted weight = 0.022 neff = 823.92
config 15/167=[ -0.75 -1.50] weight = 0.520 adjusted weight = 0.020 neff = 871.04
config 16/167=[ 0.75 1.50] weight = 0.756 adjusted weight = 0.029 neff = 826.16
config 17/167=[ -1.50 -0.75] weight = 0.296 adjusted weight = 0.011 neff = 895.24
config 18/167=[ 1.50 -0.75] weight = 0.394 adjusted weight = 0.015 neff = 799.80
config 19/167=[ -1.50 0.75] weight = 0.279 adjusted weight = 0.011 neff = 897.99
config 20/167=[ 1.50 0.75] weight = 0.464 adjusted weight = 0.018 neff = 800.46
config 21/167=[ -1.50 -1.50] weight = 0.254 adjusted weight = 0.010 neff = 894.97
config 22/167=[ 1.50 1.50] weight = 0.426 adjusted weight = 0.016 neff = 801.97
config 23/167=[ 1.50 -1.50] weight = 0.318 adjusted weight = 0.012 neff = 800.77
config 24/167=[ 0.00 -2.25] weight = 0.339 adjusted weight = 0.013 neff = 849.10
config 25/167=[ -1.50 1.50] weight = 0.262 adjusted weight = 0.010 neff = 900.15
config 26/167=[ 2.25 0.00] weight = 0.162 adjusted weight = 0.006 neff = 776.30
config 27/167=[ -2.25 0.00] weight = 0.103 adjusted weight = 0.004 neff = 920.71
config 28/167=[ -0.75 -2.25] weight = 0.326 adjusted weight = 0.013 neff = 872.18
config 29/167=[ 0.00 2.25] weight = 0.694 adjusted weight = 0.027 neff = 853.11
config 30/167=[ 2.25 0.75] weight = 0.183 adjusted weight = 0.007 neff = 776.67
config 31/167=[ 0.75 -2.25] weight = 0.362 adjusted weight = 0.014 neff = 825.72
config 32/167=[ -2.25 -0.75] weight = 0.075 adjusted weight = 0.003 neff = 919.84
config 33/167=[ 2.25 -0.75] weight = 0.155 adjusted weight = 0.006 neff = 776.56
config 34/167=[ -0.75 2.25] weight = 0.457 adjusted weight = 0.018 neff = 878.00
config 35/167=[ -2.25 0.75] weight = 0.090 adjusted weight = 0.003 neff = 922.64
config 36/167=[ 0.75 2.25] weight = 0.654 adjusted weight = 0.025 neff = 828.44
config 37/167=[ 2.25 -1.50] weight = 0.120 adjusted weight = 0.005 neff = 777.93
config 38/167=[ -2.25 -1.50] weight = 0.079 adjusted weight = 0.003 neff = 919.08
config 39/167=[ -1.50 -2.25] weight = 0.129 adjusted weight = 0.005 neff = 896.06
config 40/167=[ -1.50 2.25] weight = 0.184 adjusted weight = 0.007 neff = 903.08
config 41/167=[ -2.25 1.50] weight = 0.068 adjusted weight = 0.003 neff = 925.19
config 42/167=[ 1.50 -2.25] weight = 0.207 adjusted weight = 0.008 neff = 802.90
config 43/167=[ 2.25 1.50] weight = 0.138 adjusted weight = 0.005 neff = 778.23
config 44/167=[ 1.50 2.25] weight = 0.391 adjusted weight = 0.015 neff = 804.01
config 45/167=[ 0.00 3.00] weight = 0.496 adjusted weight = 0.019 neff = 856.20
config 46/167=[ 3.00 0.00] weight = 0.044 adjusted weight = 0.002 neff = 753.05
config 47/167=[ 0.00 -3.00] weight = 0.216 adjusted weight = 0.008 neff = 851.42
config 48/167=[ -3.00 0.00] weight = 0.018 adjusted weight = 0.001 neff = 945.49
config 49/167=[ -0.75 -3.00] weight = 0.164 adjusted weight = 0.006 neff = 874.42
config 50/167=[ -3.00 0.75] weight = 0.015 adjusted weight = 0.001 neff = 947.66
config 51/167=[ 3.00 0.75] weight = 0.045 adjusted weight = 0.002 neff = 753.28
config 52/167=[ -0.75 3.00] weight = 0.309 adjusted weight = 0.012 neff = 881.25
config 53/167=[ 0.75 -3.00] weight = 0.156 adjusted weight = 0.006 neff = 828.94
config 54/167=[ 0.75 3.00] weight = 0.491 adjusted weight = 0.019 neff = 831.35
config 55/167=[ 3.00 -0.75] weight = 0.038 adjusted weight = 0.001 neff = 753.77
config 56/167=[ 2.25 2.25] weight = 0.151 adjusted weight = 0.006 neff = 779.85
config 57/167=[ -3.00 -0.75] weight = 0.018 adjusted weight = 0.001 neff = 944.03
config 58/167=[ 2.25 -2.25] weight = 0.081 adjusted weight = 0.003 neff = 780.40
config 59/167=[ -2.25 -2.25] weight = 0.051 adjusted weight = 0.002 neff = 919.59
config 60/167=[ -2.25 2.25] weight = 0.044 adjusted weight = 0.002 neff = 928.30
config 61/167=[ -1.50 3.00] weight = 0.117 adjusted weight = 0.004 neff = 906.48
config 62/167=[ -3.00 -1.50] weight = 0.015 adjusted weight = 0.001 neff = 943.36
config 63/167=[ 1.50 -3.00] weight = 0.113 adjusted weight = 0.004 neff = 806.25
config 64/167=[ 3.00 1.50] weight = 0.043 adjusted weight = 0.002 neff = 754.30
config 65/167=[ 1.50 3.00] weight = 0.307 adjusted weight = 0.012 neff = 806.73
config 66/167=[ -3.00 1.50] weight = 0.009 adjusted weight = 0.000 neff = 950.54
config 67/167=[ -1.50 -3.00] weight = 0.081 adjusted weight = 0.003 neff = 897.66
config 68/167=[ 3.00 -1.50] weight = 0.027 adjusted weight = 0.001 neff = 755.61
config 69/167=[ -2.25 -3.00] weight = 0.026 adjusted weight = 0.001 neff = 921.13
config 70/167=[ 2.25 -3.00] weight = 0.046 adjusted weight = 0.002 neff = 784.15
config 71/167=[ 0.00 -3.75] weight = 0.071 adjusted weight = 0.003 neff = 855.57
config 72/167=[ -3.00 2.25] weight = 0.006 adjusted weight = 0.000 neff = 953.66
config 73/167=[ 3.00 -2.25] weight = 0.022 adjusted weight = 0.001 neff = 758.25
config 74/167=[ 3.00 2.25] weight = 0.038 adjusted weight = 0.001 neff = 756.00
config 75/167=[ -3.00 -2.25] weight = 0.010 adjusted weight = 0.000 neff = 943.56
config 76/167=[ 2.25 3.00] weight = 0.122 adjusted weight = 0.005 neff = 782.39
config 77/167=[ 0.00 3.75] weight = 0.325 adjusted weight = 0.013 neff = 859.74
config 78/167=[ -2.25 3.00] weight = 0.026 adjusted weight = 0.001 neff = 931.87
config 79/167=[ 3.75 0.00] weight = 0.007 adjusted weight = 0.000 neff = 730.30
config 80/167=[ -0.75 3.75] weight = 0.179 adjusted weight = 0.007 neff = 885.03
config 81/167=[ 0.75 -3.75] weight = 0.079 adjusted weight = 0.003 neff = 833.00
config 82/167=[ 3.75 0.75] weight = 0.008 adjusted weight = 0.000 neff = 730.25
config 83/167=[ 3.75 -0.75] weight = 0.007 adjusted weight = 0.000 neff = 731.25
config 84/167=[ 0.75 3.75] weight = 0.271 adjusted weight = 0.010 neff = 835.03
config 85/167=[ -0.75 -3.75] weight = 0.052 adjusted weight = 0.002 neff = 878.16
config 86/167=[ -1.50 3.75] weight = 0.066 adjusted weight = 0.003 neff = 910.35
config 87/167=[ 3.75 1.50] weight = 0.007 adjusted weight = 0.000 neff = 731.10
config 88/167=[ 1.50 -3.75] weight = 0.050 adjusted weight = 0.002 neff = 810.97
config 89/167=[ -1.50 -3.75] weight = 0.031 adjusted weight = 0.001 neff = 900.77
config 90/167=[ 1.50 3.75] weight = 0.225 adjusted weight = 0.009 neff = 809.94
config 91/167=[ 3.75 -1.50] weight = 0.005 adjusted weight = 0.000 neff = 733.45
config 92/167=[ -3.00 -3.00] weight = 0.005 adjusted weight = 0.000 neff = 944.77
config 93/167=[ 3.00 -3.00] weight = 0.014 adjusted weight = 0.001 neff = 762.36
config 94/167=[ 3.00 3.00] weight = 0.025 adjusted weight = 0.001 neff = 758.62
config 95/167=[ -3.00 3.00] weight = 0.003 adjusted weight = 0.000 neff = 957.40
config 96/167=[ 2.25 3.75] weight = 0.094 adjusted weight = 0.004 neff = 785.40
config 97/167=[ 2.25 -3.75] weight = 0.022 adjusted weight = 0.001 neff = 789.27
config 98/167=[ -2.25 -3.75] weight = 0.010 adjusted weight = 0.000 neff = 923.86
config 99/167=[ 3.75 -2.25] weight = 0.004 adjusted weight = 0.000 neff = 736.48
config 100/167=[ 3.75 2.25] weight = 0.005 adjusted weight = 0.000 neff = 732.81
config 101/167=[ -2.25 3.75] weight = 0.014 adjusted weight = 0.001 neff = 935.85
config 102/167=[ 0.00 4.50] weight = 0.199 adjusted weight = 0.008 neff = 863.69
config 103/167=[ 0.00 -4.50] weight = 0.026 adjusted weight = 0.001 neff = 860.66
config 104/167=[ 0.75 -4.50] weight = 0.026 adjusted weight = 0.001 neff = 838.78
config 105/167=[ -0.75 4.50] weight = 0.106 adjusted weight = 0.004 neff = 889.06
config 106/167=[ 0.75 4.50] weight = 0.211 adjusted weight = 0.008 neff = 838.60
config 107/167=[ -0.75 -4.50] weight = 0.017 adjusted weight = 0.001 neff = 882.87
config 108/167=[ -1.50 4.50] weight = 0.035 adjusted weight = 0.001 neff = 914.54
config 109/167=[ -1.50 -4.50] weight = 0.009 adjusted weight = 0.000 neff = 905.22
config 110/167=[ 1.50 4.50] weight = 0.147 adjusted weight = 0.006 neff = 813.65
config 111/167=[ 1.50 -4.50] weight = 0.018 adjusted weight = 0.001 neff = 817.21
config 112/167=[ 3.75 -3.00] weight = 0.003 adjusted weight = 0.000 neff = 740.96
config 113/167=[ 3.00 3.75] weight = 0.020 adjusted weight = 0.001 neff = 761.47
config 114/167=[ 3.75 3.00] weight = 0.006 adjusted weight = 0.000 neff = 734.57
config 115/167=[ 3.00 -3.75] weight = 0.007 adjusted weight = 0.000 neff = 767.95
config 116/167=[ 2.25 -4.50] weight = 0.008 adjusted weight = 0.000 neff = 795.96
config 117/167=[ -2.25 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 927.89
config 118/167=[ -2.25 4.50] weight = 0.007 adjusted weight = 0.000 neff = 940.20
config 119/167=[ 2.25 4.50] weight = 0.068 adjusted weight = 0.003 neff = 788.89
config 120/167=[ 0.00 5.25] weight = 0.114 adjusted weight = 0.004 neff = 867.98
config 121/167=[ 0.00 -5.25] weight = 0.006 adjusted weight = 0.000 neff = 867.60
config 122/167=[ 3.75 3.75] weight = 0.004 adjusted weight = 0.000 neff = 737.52
config 123/167=[ -0.75 -5.25] weight = 0.004 adjusted weight = 0.000 neff = 889.27
config 124/167=[ -0.75 5.25] weight = 0.054 adjusted weight = 0.002 neff = 893.53
config 125/167=[ 0.75 -5.25] weight = 0.006 adjusted weight = 0.000 neff = 846.27
config 126/167=[ 0.75 5.25] weight = 0.138 adjusted weight = 0.005 neff = 842.68
config 127/167=[ 3.00 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 775.17
config 128/167=[ 3.00 4.50] weight = 0.019 adjusted weight = 0.001 neff = 764.47
config 129/167=[ 1.50 5.25] weight = 0.102 adjusted weight = 0.004 neff = 817.60
config 130/167=[ -1.50 5.25] weight = 0.017 adjusted weight = 0.001 neff = 919.07
config 131/167=[ 1.50 -5.25] weight = 0.005 adjusted weight = 0.000 neff = 825.14
config 132/167=[ 2.25 5.25] weight = 0.044 adjusted weight = 0.002 neff = 792.85
config 133/167=[ -2.25 5.25] weight = 0.003 adjusted weight = 0.000 neff = 944.80
config 134/167=[ 3.75 4.50] weight = 0.004 adjusted weight = 0.000 neff = 740.36
config 135/167=[ 0.00 6.00] weight = 0.063 adjusted weight = 0.002 neff = 872.57
config 136/167=[ 3.00 5.25] weight = 0.013 adjusted weight = 0.001 neff = 768.25
config 137/167=[ 0.75 6.00] weight = 0.082 adjusted weight = 0.003 neff = 847.15
config 138/167=[ -0.75 6.00] weight = 0.029 adjusted weight = 0.001 neff = 898.16
config 139/167=[ 1.50 6.00] weight = 0.051 adjusted weight = 0.002 neff = 822.24
config 140/167=[ -1.50 6.00] weight = 0.008 adjusted weight = 0.000 neff = 923.88
config 141/167=[ 2.25 6.00] weight = 0.032 adjusted weight = 0.001 neff = 796.97
config 142/167=[ 3.75 5.25] weight = 0.003 adjusted weight = 0.000 neff = 743.91
config 143/167=[ 3.00 6.00] weight = 0.008 adjusted weight = 0.000 neff = 772.52
config 144/167=[ 0.00 6.75] weight = 0.027 adjusted weight = 0.001 neff = 877.69
config 145/167=[ -0.75 6.75] weight = 0.014 adjusted weight = 0.001 neff = 903.10
config 146/167=[ 0.75 6.75] weight = 0.047 adjusted weight = 0.002 neff = 851.89
config 147/167=[ -1.50 6.75] weight = 0.004 adjusted weight = 0.000 neff = 928.91
config 148/167=[ 1.50 6.75] weight = 0.031 adjusted weight = 0.001 neff = 826.87
config 149/167=[ 2.25 6.75] weight = 0.016 adjusted weight = 0.001 neff = 801.79
config 150/167=[ 3.00 6.75] weight = 0.007 adjusted weight = 0.000 neff = 776.61
config 151/167=[ 0.00 7.50] weight = 0.014 adjusted weight = 0.001 neff = 882.76
config 152/167=[ -0.75 7.50] weight = 0.007 adjusted weight = 0.000 neff = 908.25
config 153/167=[ 0.75 7.50] weight = 0.020 adjusted weight = 0.001 neff = 857.23
config 154/167=[ 1.50 7.50] weight = 0.018 adjusted weight = 0.001 neff = 831.78
config 155/167=[ 2.25 7.50] weight = 0.014 adjusted weight = 0.001 neff = 806.21
config 156/167=[ 3.00 7.50] weight = 0.005 adjusted weight = 0.000 neff = 781.24
config 157/167=[ 0.00 8.25] weight = 0.008 adjusted weight = 0.000 neff = 887.85
config 158/167=[ 0.75 8.25] weight = 0.013 adjusted weight = 0.001 neff = 862.14
config 159/167=[ -0.75 8.25] weight = 0.003 adjusted weight = 0.000 neff = 913.58
config 160/167=[ 1.50 8.25] weight = 0.011 adjusted weight = 0.000 neff = 836.86
config 161/167=[ 2.25 8.25] weight = 0.009 adjusted weight = 0.000 neff = 811.17
config 162/167=[ 3.00 8.25] weight = 0.003 adjusted weight = 0.000 neff = 786.09
config 163/167=[ 0.00 9.00] weight = 0.004 adjusted weight = 0.000 neff = 893.21
config 164/167=[ 0.75 9.00] weight = 0.007 adjusted weight = 0.000 neff = 867.48
config 165/167=[ 1.50 9.00] weight = 0.007 adjusted weight = 0.000 neff = 842.11
config 166/167=[ 2.25 9.00] weight = 0.006 adjusted weight = 0.000 neff = 816.33
Done.
Expected effective number of parameters: 843.532(36.023), eqv.#replicates: 3.609
DIC:
Mean of Deviance................. 4713.04
Deviance at Mean................. 3946.43
Effective number of parameters... 766.608
DIC.............................. 5479.65
Marginal likelihood: Integration -2594.511087 Gaussian-approx -2595.643784
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3300f89df/Model.ini]
Preparations : 0.095 seconds
Approx inference: 509.865 seconds [0.1|0.0|4.1|84.8|11.0]%
Output : 0.608 seconds
---------------------------------
Total : 510.568 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3294a58da] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d32852398f]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d32e40eff7]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d32852398f]
0/3044 (idx,a,y,d) = (0, 0.317125, 1, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 1, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 1, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 1, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 1, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 0, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 2, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3758d01ae] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d32ddbc416]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37d0028d1]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37c6982cc]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3500f6563] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d322c96fa5] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d356c0cb7a] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d3b6ee315] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d31cfe7d90] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d37e587cf] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d36e372b15] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d367eda83a] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/data.files/filee1d323bfad24] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fdc00e0bb50
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -2623.180882 fn= 1 theta= 4.010000 4.000000 range=[-1.439 6.012]
max.logdens= -2623.064574 fn= 2 theta= 4.000000 3.990000 range=[-1.437 6.016]
max.logdens= -2623.033092 fn= 3 theta= 3.990000 4.000000 range=[-1.438 6.013]
max.logdens= -2610.591107 fn= 5 theta= 3.139649 3.490299 range=[-1.378 6.254]
max.logdens= -2610.389654 fn= 7 theta= 3.129649 3.490299 range=[-1.378 6.255]
max.logdens= -2601.423561 fn= 11 theta= 2.752490 3.260933 range=[-1.347 6.387]
max.logdens= -2601.180479 fn= 12 theta= 2.742490 3.260933 range=[-1.346 6.389]
max.logdens= -2587.437421 fn= 16 theta= 2.307085 2.997060 range=[-1.307 6.563]
max.logdens= -2587.035813 fn= 17 theta= 2.297085 2.997060 range=[-1.307 6.565]
max.logdens= -2566.953898 fn= 21 theta= 1.803581 2.698767 range=[-1.260 6.796]
max.logdens= -2566.544891 fn= 22 theta= 1.793581 2.698767 range=[-1.259 6.799]
max.logdens= -2544.215171 fn= 26 theta= 1.289709 2.394332 range=[-1.208 7.082]
max.logdens= -2544.171525 fn= 28 theta= 1.289709 2.384332 range=[-1.207 7.087]
max.logdens= -2543.820324 fn= 29 theta= 1.279709 2.394332 range=[-1.208 7.085]
max.logdens= -2530.279134 fn= 31 theta= 0.877378 2.150053 range=[-1.334 7.361]
max.logdens= -2530.054627 fn= 32 theta= 0.867378 2.150053 range=[-1.337 7.365]
max.logdens= -2526.826381 fn= 36 theta= 0.603333 1.987700 range=[-1.462 7.583]
max.logdens= -2526.821135 fn= 39 theta= 0.593333 1.987700 range=[-1.467 7.589]
max.logdens= -2526.820014 fn= 40 theta= 0.603333 1.997700 range=[-1.461 7.577]
Iter=1 |grad|=1.07 |x-x.old|=2.79 |f-f.old|=96.3
max.logdens= -2526.819932 fn= 47 theta= 0.590291 1.990166 range=[-1.468 7.589]
max.logdens= -2526.816174 fn= 48 theta= 0.600291 2.000166 range=[-1.462 7.578]
max.logdens= -2526.815233 fn= 53 theta= 0.599557 2.000761 range=[-1.462 7.578]
max.logdens= -2526.814752 fn= 58 theta= 0.599102 2.001130 range=[-1.462 7.578]
max.logdens= -2526.814409 fn= 63 theta= 0.598785 2.001387 range=[-1.463 7.578]
max.logdens= -2526.814170 fn= 68 theta= 0.598544 2.001583 range=[-1.463 7.578]
max.logdens= -2526.813994 fn= 73 theta= 0.598351 2.001739 range=[-1.463 7.578]
max.logdens= -2526.813775 fn= 78 theta= 0.598197 2.001864 range=[-1.463 7.578]
max.logdens= -2526.813681 fn= 83 theta= 0.598069 2.001968 range=[-1.463 7.578]
max.logdens= -2526.813650 fn= 88 theta= 0.597960 2.002056 range=[-1.463 7.578]
max.logdens= -2526.813506 fn= 93 theta= 0.597868 2.002131 range=[-1.463 7.578]
max.logdens= -2526.813477 fn= 98 theta= 0.597787 2.002196 range=[-1.463 7.578]
max.logdens= -2526.813412 fn= 104 theta= 0.597767 2.002213 range=[-1.463 7.578]
max.logdens= -2526.813409 fn= 113 theta= 0.597767 2.002213 range=[-1.463 7.578]
Iter=2 |grad|=0.708 |x-x.old|=0.00507 |f-f.old|=0.00818 Reached numerical limit!
Number of function evaluations = 113
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
111.095228 8.208544
8.208544 11.578244
Eigenvectors of the Hessian
0.996661 -0.081657
0.081657 0.996661
Eigenvalues of the Hessian
111.767756
10.905717
StDev/Correlation matrix (scaled inverse Hessian)
0.097462 -0.228874
0.301899
Compute corrected stdev for theta[0]: negative 1.089782 positive 1.126377
Compute corrected stdev for theta[1]: negative 1.294473 positive 3.430500
max.logdens= -2526.818265 fn= 127 theta= 0.597767 1.992213 range=[-1.464 7.584]
config 0=[ 0.00 0.00] log(rel.dens)=-0.11, [3] accept, compute, 10.12s
config 1=[ -0.75 0.00] log(rel.dens)=-0.32, [1] accept, compute, 10.35s
max.logdens= -2526.761304 fn= 132 theta= 0.579222 2.218563 range=[-1.440 7.465]
config 2=[ 0.00 -0.75] log(rel.dens)=-0.23, [2] accept, compute, 10.51s
config 3=[ 0.75 0.00] log(rel.dens)=-0.39, [0] accept, compute, 10.55s
config 4=[ 0.00 0.75] log(rel.dens)= 0.06, [3] accept, compute, 12.36s
config 5=[ -0.75 0.75] log(rel.dens)=-0.19, [1] accept, compute, 12.15s
config 6=[ -0.75 -0.75] log(rel.dens)=-0.47, [2] accept, compute, 12.07s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.50, [0] accept, compute, 12.29s
config 8=[ 0.75 0.75] log(rel.dens)=-0.21, [3] accept, compute, 10.19s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.84, [1] accept, compute, 10.27s
config 10=[ -1.50 0.00] log(rel.dens)=-1.00, [2] accept, compute, 10.50s
config 11=[ 1.50 0.00] log(rel.dens)=-0.98, [0] accept, compute, 10.42s
config 12=[ 0.00 1.50] log(rel.dens)=-0.07, [3] accept, compute, 10.14s
config 13=[ -0.75 1.50] log(rel.dens)=-0.30, [1] accept, compute, 10.16s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.90, [2] accept, compute, 10.17s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.85, [0] accept, compute, 10.19s
config 16=[ 0.75 1.50] log(rel.dens)=-0.23, [3] accept, compute, 9.83s
config 17=[ -1.50 -0.75] log(rel.dens)=-1.23, [1] accept, compute, 9.93s
config 18=[ 1.50 -0.75] log(rel.dens)=-1.21, [2] accept, compute, 9.91s
config 19=[ -1.50 0.75] log(rel.dens)=-1.14, [0] accept, compute, 9.90s
config 20=[ 1.50 0.75] log(rel.dens)=-0.88, [3] accept, compute, 9.85s
config 21=[ -1.50 -1.50] log(rel.dens)=-1.52, [1] accept, compute, 9.77s
config 22=[ 1.50 1.50] log(rel.dens)=-0.90, [2] accept, compute, 9.83s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.53, [0] accept, compute, 10.07s
config 24=[ -1.50 1.50] log(rel.dens)=-1.14, [3] accept, compute, 10.10s
config 25=[ 0.00 -2.25] log(rel.dens)=-1.56, [1] accept, compute, 10.03s
config 26=[ 2.25 0.00] log(rel.dens)=-2.06, [2] accept, compute, 10.09s
config 27=[ -2.25 0.00] log(rel.dens)=-2.17, [0] accept, compute, 10.15s
config 28=[ 2.25 0.75] log(rel.dens)=-1.86, [1] accept, compute, 9.97s
config 29=[ 0.00 2.25] log(rel.dens)=-0.39, [3] accept, compute, 10.41s
config 30=[ -0.75 -2.25] log(rel.dens)=-1.56, [2] accept, compute, 10.00s
config 31=[ 0.75 -2.25] log(rel.dens)=-1.54, [0] accept, compute, 10.00s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.29, [1] accept, compute, 9.91s
config 33=[ -0.75 2.25] log(rel.dens)=-0.54, [2] accept, compute, 9.91s
config 34=[ 2.25 -0.75] log(rel.dens)=-2.17, [3] accept, compute, 10.02s
config 35=[ -2.25 0.75] log(rel.dens)=-2.26, [0] accept, compute, 9.87s
config 36=[ 0.75 2.25] log(rel.dens)=-0.28, [1] accept, compute, 9.98s
config 37=[ 2.25 -1.50] log(rel.dens)=-2.52, [3] accept, compute, 9.86s
config 38=[ -2.25 -1.50] log(rel.dens)=-2.67, [2] accept, compute, 10.11s
config 39=[ -1.50 -2.25] log(rel.dens)=-2.23, [0] accept, compute, 9.96s
config 40=[ 2.25 1.50] log(rel.dens)=-2.05, [1] accept, compute, 10.07s
config 41=[ -1.50 2.25] log(rel.dens)=-1.47, [3] accept, compute, 10.20s
config 42=[ 1.50 -2.25] log(rel.dens)=-2.11, [2] accept, compute, 10.36s
config 43=[ -2.25 1.50] log(rel.dens)=-2.54, [0] accept, compute, 10.11s
config 44=[ 1.50 2.25] log(rel.dens)=-0.93, [1] accept, compute, 9.95s
config 45=[ 0.00 3.00] log(rel.dens)=-0.64, [3] accept, compute, 9.99s
config 46=[ 3.00 0.00] log(rel.dens)=-3.35, [2] accept, compute, 9.97s
config 47=[ 0.00 -3.00] log(rel.dens)=-2.35, [0] accept, compute, 10.00s
config 48=[ -3.00 0.00] log(rel.dens)=-4.00, [1] accept, compute, 10.35s
config 49=[ -0.75 -3.00] log(rel.dens)=-2.62, [3] accept, compute, 10.26s
config 50=[ 3.00 0.75] log(rel.dens)=-3.26, [0] accept, compute, 10.27s
config 51=[ -3.00 0.75] log(rel.dens)=-4.21, [2] accept, compute, 10.34s
config 52=[ -0.75 3.00] log(rel.dens)=-0.88, [1] accept, compute, 10.48s
config 53=[ 0.75 -3.00] log(rel.dens)=-2.66, [3] accept, compute, 10.32s
config 54=[ 3.00 -0.75] log(rel.dens)=-3.54, [2] accept, compute, 10.33s
config 55=[ 0.75 3.00] log(rel.dens)=-0.46, [0] accept, compute, 10.58s
config 56=[ -3.00 -0.75] log(rel.dens)=-4.04, [1] accept, compute, 9.97s
config 57=[ 2.25 2.25] log(rel.dens)=-1.85, [3] accept, compute, 9.92s
config 58=[ 2.25 -2.25] log(rel.dens)=-3.14, [2] accept, compute, 9.89s
config 59=[ -2.25 -2.25] log(rel.dens)=-3.39, [0] accept, compute, 9.97s
config 60=[ -2.25 2.25] log(rel.dens)=-3.17, [1] accept, compute, 10.07s
config 61=[ -1.50 3.00] log(rel.dens)=-1.91, [3] accept, compute, 10.10s
config 62=[ -3.00 -1.50] log(rel.dens)=-4.40, [2] accept, compute, 10.14s
config 63=[ 1.50 -3.00] log(rel.dens)=-2.95, [0] accept, compute, 10.27s
config 64=[ 3.00 1.50] log(rel.dens)=-3.23, [1] accept, compute, 10.30s
config 65=[ 1.50 3.00] log(rel.dens)=-0.97, [3] accept, compute, 10.16s
config 66=[ -3.00 1.50] log(rel.dens)=-4.76, [2] accept, compute, 10.19s
config 67=[ -1.50 -3.00] log(rel.dens)=-3.33, [0] accept, compute, 10.24s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.79, [1] accept, compute, 10.12s
config 69=[ -2.25 -3.00] log(rel.dens)=-4.52, [3] accept, compute, 10.18s
config 70=[ 2.25 -3.00] log(rel.dens)=-3.77, [2] accept, compute, 10.01s
config 71=[ 0.00 -3.75] log(rel.dens)=-3.95, [0] accept, compute, 9.93s
config 72=[ -3.00 2.25] log(rel.dens)=-5.15, [1] accept, compute, 10.40s
config 73=[ 3.00 -2.25] log(rel.dens)=-4.22, [3] accept, compute, 10.40s
config 74=[ 3.00 2.25] log(rel.dens)=-3.22, [2] accept, compute, 10.28s
config 75=[ -3.00 -2.25] log(rel.dens)=-5.07, [0] accept, compute, 10.34s
config 76=[ 2.25 3.00] log(rel.dens)=-1.93, [1] accept, compute, 11.48s
config 77=[ -3.75 0.00] log(rel.dens)=-6.46, reject, 0.34s
config 78=[ 0.00 3.75] log(rel.dens)=-0.73, [3] accept, compute, 11.68s
config 79=[ 3.75 0.00] log(rel.dens)=-5.05, [0] accept, compute, 11.25s
config 80=[ -2.25 3.00] log(rel.dens)=-3.55, [2] accept, compute, 11.77s
config 81=[ 0.75 -3.75] log(rel.dens)=-3.79, [3] accept, compute, 10.10s
config 82=[ -0.75 3.75] log(rel.dens)=-1.30, [1] accept, compute, 10.13s
config 83=[ 3.75 0.75] log(rel.dens)=-4.97, [0] accept, compute, 10.06s
config 84=[ 3.75 -0.75] log(rel.dens)=-5.17, [2] accept, compute, 10.25s
config 85=[ 0.75 3.75] log(rel.dens)=-0.69, [3] accept, compute, 10.17s
config 86=[ -0.75 -3.75] log(rel.dens)=-4.13, [1] accept, compute, 10.27s
config 87=[ -1.50 3.75] log(rel.dens)=-2.46, [0] accept, compute, 10.27s
config 88=[ 3.75 1.50] log(rel.dens)=-5.03, [2] accept, compute, 10.07s
config 89=[ -1.50 -3.75] log(rel.dens)=-4.91, [3] accept, compute, 10.89s
config 90=[ -3.00 -3.00] log(rel.dens)=-6.43, reject, 0.23s
config 91=[ 1.50 -3.75] log(rel.dens)=-4.15, [1] accept, compute, 11.03s
config 92=[ 1.50 3.75] log(rel.dens)=-1.13, [0] accept, compute, 10.90s
config 93=[ 3.75 -1.50] log(rel.dens)=-5.35, [2] accept, compute, 10.94s
config 94=[ 3.00 -3.00] log(rel.dens)=-4.85, [3] accept, compute, 10.86s
config 95=[ -3.00 3.00] log(rel.dens)=-5.79, [0] accept, compute, 10.87s
config 96=[ 3.00 3.00] log(rel.dens)=-3.26, [1] accept, compute, 10.96s
config 97=[ 2.25 -3.75] log(rel.dens)=-4.82, [2] accept, compute, 10.87s
config 98=[ -2.25 -3.75] log(rel.dens)=-6.13, reject, 0.28s
config 99=[ 2.25 3.75] log(rel.dens)=-2.02, [3] accept, compute, 10.28s
config 100=[ 3.75 -2.25] log(rel.dens)=-5.68, [1] accept, compute, 10.34s
config 101=[ 3.75 2.25] log(rel.dens)=-4.93, [2] accept, compute, 10.34s
config 102=[ 4.50 0.00] log(rel.dens)=-7.09, reject, 0.21s
config 103=[ -2.25 3.75] log(rel.dens)=-4.18, [0] accept, compute, 10.42s
config 104=[ 0.00 4.50] log(rel.dens)=-1.09, [3] accept, compute, 10.20s
config 105=[ 0.00 -4.50] log(rel.dens)=-5.73, [1] accept, compute, 10.13s
config 106=[ -0.75 -4.50] log(rel.dens)=-6.25, reject, 0.20s
config 107=[ 0.75 -4.50] log(rel.dens)=-5.63, [2] accept, compute, 10.21s
config 108=[ -0.75 4.50] log(rel.dens)=-2.01, [0] accept, compute, 10.19s
config 109=[ 0.75 4.50] log(rel.dens)=-1.02, [3] accept, compute, 10.81s
config 110=[ 3.75 -3.00] log(rel.dens)=-6.18, reject, 0.37s
config 111=[ -1.50 4.50] log(rel.dens)=-3.03, [1] accept, compute, 10.93s
config 112=[ 1.50 -4.50] log(rel.dens)=-5.83, [0] accept, compute, 10.85s
config 113=[ 1.50 4.50] log(rel.dens)=-1.32, [2] accept, compute, 10.91s
config 114=[ -3.00 3.75] log(rel.dens)=-6.85, reject, 0.22s
config 115=[ 2.25 -4.50] log(rel.dens)=-6.36, reject, 0.28s
config 116=[ 3.00 3.75] log(rel.dens)=-3.30, [3] accept, compute, 10.26s
config 117=[ 3.75 3.00] log(rel.dens)=-4.94, [0] accept, compute, 10.26s
config 118=[ 3.00 -3.75] log(rel.dens)=-5.77, [2] accept, compute, 10.29s
config 119=[ 0.00 -5.25] log(rel.dens)=-8.39, reject, 0.30s
config 120=[ -2.25 4.50] log(rel.dens)=-4.93, [1] accept, compute, 10.39s
config 121=[ 2.25 4.50] log(rel.dens)=-2.20, [3] accept, compute, 10.23s
config 122=[ 0.00 5.25] log(rel.dens)=-1.49, [0] accept, compute, 10.48s
config 123=[ 3.75 3.75] log(rel.dens)=-4.96, [2] accept, compute, 10.49s
config 124=[ -0.75 5.25] log(rel.dens)=-2.52, [1] accept, compute, 10.58s
config 125=[ 0.75 5.25] log(rel.dens)=-1.24, [3] accept, compute, 10.09s
config 126=[ 3.00 4.50] log(rel.dens)=-3.35, [0] accept, compute, 10.03s
config 127=[ -1.50 5.25] log(rel.dens)=-3.74, [1] accept, compute, 10.00s
config 128=[ 1.50 5.25] log(rel.dens)=-1.51, [2] accept, compute, 10.22s
config 129=[ 2.25 5.25] log(rel.dens)=-2.46, [3] accept, compute, 10.31s
config 130=[ -2.25 5.25] log(rel.dens)=-5.70, [0] accept, compute, 10.40s
config 131=[ 3.75 4.50] log(rel.dens)=-4.96, [1] accept, compute, 10.36s
config 132=[ 0.00 6.00] log(rel.dens)=-1.89, [2] accept, compute, 10.42s
config 133=[ 3.00 5.25] log(rel.dens)=-3.45, [3] accept, compute, 10.28s
config 134=[ 0.75 6.00] log(rel.dens)=-1.54, [0] accept, compute, 10.43s
config 135=[ -2.25 6.00] log(rel.dens)=-6.49, reject, 0.31s
config 136=[ 1.50 6.00] log(rel.dens)=-1.95, [2] accept, compute, 10.26s
config 137=[ -0.75 6.00] log(rel.dens)=-2.83, [1] accept, compute, 10.35s
config 138=[ -1.50 6.00] log(rel.dens)=-4.34, [3] accept, compute, 10.37s
config 139=[ 2.25 6.00] log(rel.dens)=-2.36, [0] accept, compute, 10.40s
config 140=[ 3.75 5.25] log(rel.dens)=-4.94, [2] accept, compute, 10.60s
config 141=[ 3.00 6.00] log(rel.dens)=-3.44, [1] accept, compute, 10.64s
config 142=[ 0.00 6.75] log(rel.dens)=-2.54, [3] accept, compute, 9.84s
config 143=[ -0.75 6.75] log(rel.dens)=-3.36, [0] accept, compute, 10.03s
config 144=[ 0.75 6.75] log(rel.dens)=-1.84, [2] accept, compute, 9.93s
config 145=[ -1.50 6.75] log(rel.dens)=-5.03, [1] accept, compute, 9.96s
config 146=[ 1.50 6.75] log(rel.dens)=-2.14, [3] accept, compute, 9.86s
config 147=[ 3.75 6.00] log(rel.dens)=-4.91, [0] accept, compute, 10.02s
config 148=[ 2.25 6.75] log(rel.dens)=-2.67, [2] accept, compute, 9.87s
config 149=[ 3.00 6.75] log(rel.dens)=-3.45, [1] accept, compute, 10.00s
config 150=[ 0.00 7.50] log(rel.dens)=-2.72, [3] accept, compute, 9.94s
config 151=[ -0.75 7.50] log(rel.dens)=-3.92, [0] accept, compute, 9.96s
config 152=[ 0.75 7.50] log(rel.dens)=-2.13, [2] accept, compute, 10.15s
config 153=[ 1.50 7.50] log(rel.dens)=-2.07, [1] accept, compute, 10.08s
config 154=[ -1.50 7.50] log(rel.dens)=-5.71, [3] accept, compute, 10.14s
config 155=[ 3.75 6.75] log(rel.dens)=-4.85, [0] accept, compute, 10.04s
config 156=[ 2.25 7.50] log(rel.dens)=-2.75, [2] accept, compute, 10.01s
config 157=[ 3.00 7.50] log(rel.dens)=-3.64, [1] accept, compute, 9.99s
config 158=[ 0.00 8.25] log(rel.dens)=-3.37, [3] accept, compute, 9.71s
config 159=[ 0.75 8.25] log(rel.dens)=-2.40, [0] accept, compute, 10.02s
config 160=[ 1.50 8.25] log(rel.dens)=-2.23, [1] accept, compute, 9.93s
config 161=[ -0.75 8.25] log(rel.dens)=-4.46, [2] accept, compute, 10.05s
config 162=[ -1.50 8.25] log(rel.dens)=-6.41, reject, 0.33s
config 163=[ 3.75 7.50] log(rel.dens)=-4.75, [3] accept, compute, 10.07s
config 164=[ 2.25 8.25] log(rel.dens)=-2.63, [1] accept, compute, 10.10s
config 165=[ 0.00 9.00] log(rel.dens)=-3.77, [0] accept, compute, 10.13s
config 166=[ 3.00 8.25] log(rel.dens)=-3.38, [2] accept, compute, 10.22s
config 167=[ 0.75 9.00] log(rel.dens)=-2.67, [3] accept, compute, 11.06s
config 168=[ -0.75 9.00] log(rel.dens)=-5.00, [1] accept, compute, 11.11s
config 169=[ 1.50 9.00] log(rel.dens)=-2.37, [2] accept, compute, 11.07s
config 170=[ 3.75 8.25] log(rel.dens)=-4.62, [0] accept, compute, 11.20s
config 171=[ 2.25 9.00] log(rel.dens)=-2.84, [3] accept, compute, 12.30s
config 172=[ 3.75 9.00] log(rel.dens)=-4.45, [0] accept, compute, 12.21s
config 173=[ 3.00 9.00] log(rel.dens)=-3.31, [1] accept, compute, 12.47s
config 174=[ 0.00 9.75] log(rel.dens)=-3.93, [2] accept, compute, 12.46s
config 175=[ -0.75 9.75] log(rel.dens)=-5.55, [3] accept, compute, 10.37s
config 176=[ 1.50 9.75] log(rel.dens)=-2.49, [1] accept, compute, 10.38s
config 177=[ 0.75 9.75] log(rel.dens)=-2.92, [0] accept, compute, 10.47s
config 178=[ 2.25 9.75] log(rel.dens)=-2.60, [2] accept, compute, 10.45s
config 179=[ -0.75 10.50] log(rel.dens)=-6.10, reject, 0.29s
config 180=[ 3.00 9.75] log(rel.dens)=-3.20, [3] accept, compute, 10.49s
config 181=[ 0.00 10.50] log(rel.dens)=-4.44, [0] accept, compute, 10.25s
config 182=[ 3.75 9.75] log(rel.dens)=-4.25, [1] accept, compute, 10.35s
config 183=[ 0.75 10.50] log(rel.dens)=-3.17, [2] accept, compute, 10.51s
config 184=[ 1.50 10.50] log(rel.dens)=-2.61, [3] accept, compute, 10.62s
config 185=[ 2.25 10.50] log(rel.dens)=-2.59, [0] accept, compute, 10.53s
config 186=[ 3.00 10.50] log(rel.dens)=-3.16, [1] accept, compute, 10.48s
config 187=[ 3.75 10.50] log(rel.dens)=-4.03, [2] accept, compute, 10.67s
config 188=[ 0.00 11.25] log(rel.dens)=-4.72, [3] accept, compute, 10.20s
config 189=[ 1.50 11.25] log(rel.dens)=-2.72, [1] accept, compute, 10.31s
config 190=[ 0.75 11.25] log(rel.dens)=-3.42, [0] accept, compute, 10.49s
config 191=[ 2.25 11.25] log(rel.dens)=-2.57, [2] accept, compute, 10.32s
config 192=[ 3.00 11.25] log(rel.dens)=-2.94, [3] accept, compute, 10.37s
config 193=[ 3.75 11.25] log(rel.dens)=-3.78, [1] accept, compute, 10.36s
config 194=[ 0.00 12.00] log(rel.dens)=-5.26, [0] accept, compute, 10.41s
config 195=[ 0.75 12.00] log(rel.dens)=-3.68, [2] accept, compute, 10.31s
config 196=[ 1.50 12.00] log(rel.dens)=-2.83, [3] accept, compute, 10.31s
config 197=[ 2.25 12.00] log(rel.dens)=-2.55, [1] accept, compute, 10.28s
config 198=[ 3.00 12.00] log(rel.dens)=-2.80, [0] accept, compute, 10.37s
config 199=[ 3.75 12.00] log(rel.dens)=-3.53, [2] accept, compute, 10.66s
config 200=[ 0.00 12.75] log(rel.dens)=-5.57, [3] accept, compute, 10.09s
config 201=[ 0.75 12.75] log(rel.dens)=-3.95, [1] accept, compute, 10.15s
config 202=[ 1.50 12.75] log(rel.dens)=-2.95, [0] accept, compute, 10.14s
config 203=[ 0.00 13.50] log(rel.dens)=-6.03, reject, 0.37s
config 204=[ 2.25 12.75] log(rel.dens)=-2.54, [2] accept, compute, 10.31s
config 205=[ 3.00 12.75] log(rel.dens)=-2.66, [3] accept, compute, 7.55s
config 206=[ 3.75 12.75] log(rel.dens)=-3.27, [1] accept, compute, 6.55s
Combine the densities with relative weights:
config 0/194=[ 0.00 0.00] weight = 0.850 adjusted weight = 0.030 neff = 672.52
config 1/194=[ -0.75 0.00] weight = 0.688 adjusted weight = 0.024 neff = 701.73
config 2/194=[ 0.00 -0.75] weight = 0.750 adjusted weight = 0.027 neff = 672.37
config 3/194=[ 0.75 0.00] weight = 0.642 adjusted weight = 0.023 neff = 644.06
config 4/194=[ 0.00 0.75] weight = 1.000 adjusted weight = 0.036 neff = 673.87
config 5/194=[ -0.75 0.75] weight = 0.780 adjusted weight = 0.028 neff = 703.50
config 6/194=[ -0.75 -0.75] weight = 0.587 adjusted weight = 0.021 neff = 701.19
config 7/194=[ 0.75 -0.75] weight = 0.573 adjusted weight = 0.020 neff = 644.37
config 8/194=[ 0.75 0.75] weight = 0.767 adjusted weight = 0.027 neff = 645.00
config 9/194=[ 0.00 -1.50] weight = 0.408 adjusted weight = 0.015 neff = 674.38
config 10/194=[ -1.50 0.00] weight = 0.349 adjusted weight = 0.012 neff = 731.57
config 11/194=[ 1.50 0.00] weight = 0.355 adjusted weight = 0.013 neff = 616.22
config 12/194=[ 0.00 1.50] weight = 0.880 adjusted weight = 0.031 neff = 676.68
config 13/194=[ -0.75 1.50] weight = 0.699 adjusted weight = 0.025 neff = 706.59
config 14/194=[ 0.75 -1.50] weight = 0.384 adjusted weight = 0.014 neff = 646.64
config 15/194=[ -0.75 -1.50] weight = 0.403 adjusted weight = 0.014 neff = 702.34
config 16/194=[ 0.75 1.50] weight = 0.752 adjusted weight = 0.027 neff = 647.33
config 17/194=[ -1.50 -0.75] weight = 0.275 adjusted weight = 0.010 neff = 730.72
config 18/194=[ 1.50 -0.75] weight = 0.281 adjusted weight = 0.010 neff = 617.18
config 19/194=[ -1.50 0.75] weight = 0.302 adjusted weight = 0.011 neff = 734.05
config 20/194=[ 1.50 0.75] weight = 0.392 adjusted weight = 0.014 neff = 616.84
config 21/194=[ -1.50 -1.50] weight = 0.206 adjusted weight = 0.007 neff = 731.26
config 22/194=[ 1.50 1.50] weight = 0.384 adjusted weight = 0.014 neff = 618.82
config 23/194=[ 1.50 -1.50] weight = 0.205 adjusted weight = 0.007 neff = 619.91
config 24/194=[ -1.50 1.50] weight = 0.302 adjusted weight = 0.011 neff = 737.25
config 25/194=[ 0.00 -2.25] weight = 0.199 adjusted weight = 0.007 neff = 678.27
config 26/194=[ 2.25 0.00] weight = 0.120 adjusted weight = 0.004 neff = 589.31
config 27/194=[ -2.25 0.00] weight = 0.108 adjusted weight = 0.004 neff = 761.96
config 28/194=[ 2.25 0.75] weight = 0.147 adjusted weight = 0.005 neff = 589.35
config 29/194=[ 0.00 2.25] weight = 0.642 adjusted weight = 0.023 neff = 680.63
config 30/194=[ -0.75 -2.25] weight = 0.198 adjusted weight = 0.007 neff = 705.60
config 31/194=[ 0.75 -2.25] weight = 0.203 adjusted weight = 0.007 neff = 651.08
config 32/194=[ -2.25 -0.75] weight = 0.095 adjusted weight = 0.003 neff = 760.58
config 33/194=[ -0.75 2.25] weight = 0.549 adjusted weight = 0.020 neff = 710.68
config 34/194=[ 2.25 -0.75] weight = 0.108 adjusted weight = 0.004 neff = 590.62
config 35/194=[ -2.25 0.75] weight = 0.098 adjusted weight = 0.003 neff = 764.68
config 36/194=[ 0.75 2.25] weight = 0.713 adjusted weight = 0.025 neff = 650.64
config 37/194=[ 2.25 -1.50] weight = 0.076 adjusted weight = 0.003 neff = 593.99
config 38/194=[ -2.25 -1.50] weight = 0.065 adjusted weight = 0.002 neff = 760.77
config 39/194=[ -1.50 -2.25] weight = 0.102 adjusted weight = 0.004 neff = 733.91
config 40/194=[ 2.25 1.50] weight = 0.122 adjusted weight = 0.004 neff = 591.18
config 41/194=[ -1.50 2.25] weight = 0.216 adjusted weight = 0.008 neff = 741.69
config 42/194=[ 1.50 -2.25] weight = 0.115 adjusted weight = 0.004 neff = 624.94
config 43/194=[ -2.25 1.50] weight = 0.074 adjusted weight = 0.003 neff = 768.50
config 44/194=[ 1.50 2.25] weight = 0.374 adjusted weight = 0.013 neff = 621.79
config 45/194=[ 0.00 3.00] weight = 0.499 adjusted weight = 0.018 neff = 685.24
config 46/194=[ 3.00 0.00] weight = 0.033 adjusted weight = 0.001 neff = 563.04
config 47/194=[ 0.00 -3.00] weight = 0.090 adjusted weight = 0.003 neff = 684.28
config 48/194=[ -3.00 0.00] weight = 0.017 adjusted weight = 0.001 neff = 793.02
config 49/194=[ -0.75 -3.00] weight = 0.069 adjusted weight = 0.002 neff = 711.25
config 50/194=[ 3.00 0.75] weight = 0.036 adjusted weight = 0.001 neff = 562.77
config 51/194=[ -3.00 0.75] weight = 0.014 adjusted weight = 0.001 neff = 796.16
config 52/194=[ -0.75 3.00] weight = 0.391 adjusted weight = 0.014 neff = 715.60
config 53/194=[ 0.75 -3.00] weight = 0.066 adjusted weight = 0.002 neff = 658.30
config 54/194=[ 3.00 -0.75] weight = 0.028 adjusted weight = 0.001 neff = 564.99
config 55/194=[ 0.75 3.00] weight = 0.598 adjusted weight = 0.021 neff = 654.92
config 56/194=[ -3.00 -0.75] weight = 0.017 adjusted weight = 0.001 neff = 791.19
config 57/194=[ 2.25 2.25] weight = 0.148 adjusted weight = 0.005 neff = 593.52
config 58/194=[ 2.25 -2.25] weight = 0.041 adjusted weight = 0.001 neff = 599.77
config 59/194=[ -2.25 -2.25] weight = 0.032 adjusted weight = 0.001 neff = 762.87
config 60/194=[ -2.25 2.25] weight = 0.040 adjusted weight = 0.001 neff = 773.52
config 61/194=[ -1.50 3.00] weight = 0.140 adjusted weight = 0.005 neff = 746.91
config 62/194=[ -3.00 -1.50] weight = 0.012 adjusted weight = 0.000 neff = 790.91
config 63/194=[ 1.50 -3.00] weight = 0.049 adjusted weight = 0.002 neff = 632.56
config 64/194=[ 3.00 1.50] weight = 0.037 adjusted weight = 0.001 neff = 563.90
config 65/194=[ 1.50 3.00] weight = 0.356 adjusted weight = 0.013 neff = 625.64
config 66/194=[ -3.00 1.50] weight = 0.008 adjusted weight = 0.000 neff = 800.57
config 67/194=[ -1.50 -3.00] weight = 0.034 adjusted weight = 0.001 neff = 738.91
config 68/194=[ 3.00 -1.50] weight = 0.021 adjusted weight = 0.001 neff = 568.84
config 69/194=[ -2.25 -3.00] weight = 0.010 adjusted weight = 0.000 neff = 767.22
config 70/194=[ 2.25 -3.00] weight = 0.022 adjusted weight = 0.001 neff = 607.87
config 71/194=[ 0.00 -3.75] weight = 0.018 adjusted weight = 0.001 neff = 693.71
config 72/194=[ -3.00 2.25] weight = 0.006 adjusted weight = 0.000 neff = 805.40
config 73/194=[ 3.00 -2.25] weight = 0.014 adjusted weight = 0.000 neff = 575.05
config 74/194=[ 3.00 2.25] weight = 0.038 adjusted weight = 0.001 neff = 566.16
config 75/194=[ -3.00 -2.25] weight = 0.006 adjusted weight = 0.000 neff = 792.43
config 76/194=[ 2.25 3.00] weight = 0.137 adjusted weight = 0.005 neff = 597.14
config 77/194=[ 0.00 3.75] weight = 0.453 adjusted weight = 0.016 neff = 690.25
config 78/194=[ 3.75 0.00] weight = 0.006 adjusted weight = 0.000 neff = 537.79
config 79/194=[ -2.25 3.00] weight = 0.027 adjusted weight = 0.001 neff = 778.80
config 80/194=[ 0.75 -3.75] weight = 0.021 adjusted weight = 0.001 neff = 667.97
config 81/194=[ -0.75 3.75] weight = 0.258 adjusted weight = 0.009 neff = 721.21
config 82/194=[ 3.75 0.75] weight = 0.007 adjusted weight = 0.000 neff = 537.05
config 83/194=[ 3.75 -0.75] weight = 0.005 adjusted weight = 0.000 neff = 540.18
config 84/194=[ 0.75 3.75] weight = 0.474 adjusted weight = 0.017 neff = 659.94
config 85/194=[ -0.75 -3.75] weight = 0.015 adjusted weight = 0.001 neff = 719.70
config 86/194=[ -1.50 3.75] weight = 0.081 adjusted weight = 0.003 neff = 752.82
config 87/194=[ 3.75 1.50] weight = 0.006 adjusted weight = 0.000 neff = 537.89
config 88/194=[ -1.50 -3.75] weight = 0.007 adjusted weight = 0.000 neff = 746.62
config 89/194=[ 1.50 -3.75] weight = 0.015 adjusted weight = 0.001 neff = 643.20
config 90/194=[ 1.50 3.75] weight = 0.305 adjusted weight = 0.011 neff = 630.34
config 91/194=[ 3.75 -1.50] weight = 0.004 adjusted weight = 0.000 neff = 544.55
config 92/194=[ 3.00 -3.00] weight = 0.007 adjusted weight = 0.000 neff = 583.96
config 93/194=[ -3.00 3.00] weight = 0.003 adjusted weight = 0.000 neff = 811.15
config 94/194=[ 3.00 3.00] weight = 0.036 adjusted weight = 0.001 neff = 569.41
config 95/194=[ 2.25 -3.75] weight = 0.008 adjusted weight = 0.000 neff = 619.21
config 96/194=[ 2.25 3.75] weight = 0.126 adjusted weight = 0.004 neff = 601.50
config 97/194=[ 3.75 -2.25] weight = 0.003 adjusted weight = 0.000 neff = 551.31
config 98/194=[ 3.75 2.25] weight = 0.007 adjusted weight = 0.000 neff = 539.64
config 99/194=[ -2.25 3.75] weight = 0.014 adjusted weight = 0.001 neff = 784.91
config 100/194=[ 0.00 4.50] weight = 0.317 adjusted weight = 0.011 neff = 696.15
config 101/194=[ 0.00 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 706.01
config 102/194=[ 0.75 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 681.33
config 103/194=[ -0.75 4.50] weight = 0.126 adjusted weight = 0.004 neff = 727.72
config 104/194=[ 0.75 4.50] weight = 0.342 adjusted weight = 0.012 neff = 665.65
config 105/194=[ -1.50 4.50] weight = 0.046 adjusted weight = 0.002 neff = 759.22
config 106/194=[ 1.50 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 657.37
config 107/194=[ 1.50 4.50] weight = 0.252 adjusted weight = 0.009 neff = 635.69
config 108/194=[ 3.00 3.75] weight = 0.035 adjusted weight = 0.001 neff = 573.46
config 109/194=[ 3.75 3.00] weight = 0.007 adjusted weight = 0.000 neff = 542.54
config 110/194=[ 3.00 -3.75] weight = 0.003 adjusted weight = 0.000 neff = 596.02
config 111/194=[ -2.25 4.50] weight = 0.007 adjusted weight = 0.000 neff = 791.61
config 112/194=[ 2.25 4.50] weight = 0.105 adjusted weight = 0.004 neff = 606.64
config 113/194=[ 0.00 5.25] weight = 0.212 adjusted weight = 0.008 neff = 702.56
config 114/194=[ 3.75 3.75] weight = 0.007 adjusted weight = 0.000 neff = 546.29
config 115/194=[ -0.75 5.25] weight = 0.076 adjusted weight = 0.003 neff = 734.36
config 116/194=[ 0.75 5.25] weight = 0.273 adjusted weight = 0.010 neff = 671.70
config 117/194=[ 3.00 4.50] weight = 0.033 adjusted weight = 0.001 neff = 578.19
config 118/194=[ -1.50 5.25] weight = 0.022 adjusted weight = 0.001 neff = 766.19
config 119/194=[ 1.50 5.25] weight = 0.208 adjusted weight = 0.007 neff = 641.55
config 120/194=[ 2.25 5.25] weight = 0.081 adjusted weight = 0.003 neff = 612.43
config 121/194=[ -2.25 5.25] weight = 0.003 adjusted weight = 0.000 neff = 798.69
config 122/194=[ 3.75 4.50] weight = 0.007 adjusted weight = 0.000 neff = 550.69
config 123/194=[ 0.00 6.00] weight = 0.142 adjusted weight = 0.005 neff = 709.35
config 124/194=[ 3.00 5.25] weight = 0.030 adjusted weight = 0.001 neff = 583.56
config 125/194=[ 0.75 6.00] weight = 0.202 adjusted weight = 0.007 neff = 678.26
config 126/194=[ 1.50 6.00] weight = 0.135 adjusted weight = 0.005 neff = 648.19
config 127/194=[ -0.75 6.00] weight = 0.056 adjusted weight = 0.002 neff = 741.07
config 128/194=[ -1.50 6.00] weight = 0.012 adjusted weight = 0.000 neff = 773.34
config 129/194=[ 2.25 6.00] weight = 0.089 adjusted weight = 0.003 neff = 618.18
config 130/194=[ 3.75 5.25] weight = 0.007 adjusted weight = 0.000 neff = 555.67
config 131/194=[ 3.00 6.00] weight = 0.030 adjusted weight = 0.001 neff = 589.26
config 132/194=[ 0.00 6.75] weight = 0.074 adjusted weight = 0.003 neff = 716.80
config 133/194=[ -0.75 6.75] weight = 0.033 adjusted weight = 0.001 neff = 748.41
config 134/194=[ 0.75 6.75] weight = 0.150 adjusted weight = 0.005 neff = 685.18
config 135/194=[ -1.50 6.75] weight = 0.006 adjusted weight = 0.000 neff = 780.89
config 136/194=[ 1.50 6.75] weight = 0.111 adjusted weight = 0.004 neff = 654.87
config 137/194=[ 3.75 6.00] weight = 0.007 adjusted weight = 0.000 neff = 561.16
config 138/194=[ 2.25 6.75] weight = 0.065 adjusted weight = 0.002 neff = 624.91
config 139/194=[ 3.00 6.75] weight = 0.030 adjusted weight = 0.001 neff = 595.42
config 140/194=[ 0.00 7.50] weight = 0.062 adjusted weight = 0.002 neff = 723.90
config 141/194=[ -0.75 7.50] weight = 0.019 adjusted weight = 0.001 neff = 756.04
config 142/194=[ 0.75 7.50] weight = 0.113 adjusted weight = 0.004 neff = 692.38
config 143/194=[ 1.50 7.50] weight = 0.119 adjusted weight = 0.004 neff = 661.50
config 144/194=[ -1.50 7.50] weight = 0.003 adjusted weight = 0.000 neff = 788.66
config 145/194=[ 3.75 6.75] weight = 0.007 adjusted weight = 0.000 neff = 567.05
config 146/194=[ 2.25 7.50] weight = 0.060 adjusted weight = 0.002 neff = 631.65
config 147/194=[ 3.00 7.50] weight = 0.025 adjusted weight = 0.001 neff = 602.20
config 148/194=[ 0.00 8.25] weight = 0.033 adjusted weight = 0.001 neff = 731.88
config 149/194=[ 0.75 8.25] weight = 0.085 adjusted weight = 0.003 neff = 699.83
config 150/194=[ 1.50 8.25] weight = 0.102 adjusted weight = 0.004 neff = 668.73
config 151/194=[ -0.75 8.25] weight = 0.011 adjusted weight = 0.000 neff = 763.85
config 152/194=[ 3.75 7.50] weight = 0.008 adjusted weight = 0.000 neff = 573.27
config 153/194=[ 2.25 8.25] weight = 0.068 adjusted weight = 0.002 neff = 638.41
config 154/194=[ 0.00 9.00] weight = 0.022 adjusted weight = 0.001 neff = 739.72
config 155/194=[ 3.00 8.25] weight = 0.032 adjusted weight = 0.001 neff = 608.67
config 156/194=[ 0.75 9.00] weight = 0.065 adjusted weight = 0.002 neff = 707.49
config 157/194=[ -0.75 9.00] weight = 0.006 adjusted weight = 0.000 neff = 771.87
config 158/194=[ 1.50 9.00] weight = 0.088 adjusted weight = 0.003 neff = 676.19
config 159/194=[ 3.75 8.25] weight = 0.009 adjusted weight = 0.000 neff = 579.79
config 160/194=[ 2.25 9.00] weight = 0.055 adjusted weight = 0.002 neff = 645.91
config 161/194=[ 3.75 9.00] weight = 0.011 adjusted weight = 0.000 neff = 586.55
config 162/194=[ 3.00 9.00] weight = 0.035 adjusted weight = 0.001 neff = 615.68
config 163/194=[ 0.00 9.75] weight = 0.019 adjusted weight = 0.001 neff = 747.40
config 164/194=[ -0.75 9.75] weight = 0.004 adjusted weight = 0.000 neff = 780.04
config 165/194=[ 1.50 9.75] weight = 0.078 adjusted weight = 0.003 neff = 683.82
config 166/194=[ 0.75 9.75] weight = 0.051 adjusted weight = 0.002 neff = 715.31
config 167/194=[ 2.25 9.75] weight = 0.070 adjusted weight = 0.002 neff = 652.99
config 168/194=[ 3.00 9.75] weight = 0.038 adjusted weight = 0.001 neff = 622.88
config 169/194=[ 0.00 10.50] weight = 0.011 adjusted weight = 0.000 neff = 755.71
config 170/194=[ 3.75 9.75] weight = 0.013 adjusted weight = 0.000 neff = 593.52
config 171/194=[ 0.75 10.50] weight = 0.040 adjusted weight = 0.001 neff = 723.28
config 172/194=[ 1.50 10.50] weight = 0.070 adjusted weight = 0.002 neff = 691.61
config 173/194=[ 2.25 10.50] weight = 0.071 adjusted weight = 0.003 neff = 660.58
config 174/194=[ 3.00 10.50] weight = 0.040 adjusted weight = 0.001 neff = 630.37
config 175/194=[ 3.75 10.50] weight = 0.017 adjusted weight = 0.001 neff = 600.67
config 176/194=[ 0.00 11.25] weight = 0.008 adjusted weight = 0.000 neff = 763.81
config 177/194=[ 1.50 11.25] weight = 0.063 adjusted weight = 0.002 neff = 699.53
config 178/194=[ 0.75 11.25] weight = 0.031 adjusted weight = 0.001 neff = 731.39
config 179/194=[ 2.25 11.25] weight = 0.072 adjusted weight = 0.003 neff = 668.31
config 180/194=[ 3.00 11.25] weight = 0.050 adjusted weight = 0.002 neff = 637.78
config 181/194=[ 3.75 11.25] weight = 0.022 adjusted weight = 0.001 neff = 607.98
config 182/194=[ 0.00 12.00] weight = 0.005 adjusted weight = 0.000 neff = 772.34
config 183/194=[ 0.75 12.00] weight = 0.024 adjusted weight = 0.001 neff = 739.59
config 184/194=[ 1.50 12.00] weight = 0.056 adjusted weight = 0.002 neff = 707.57
config 185/194=[ 2.25 12.00] weight = 0.074 adjusted weight = 0.003 neff = 676.16
config 186/194=[ 3.00 12.00] weight = 0.058 adjusted weight = 0.002 neff = 645.43
config 187/194=[ 3.75 12.00] weight = 0.028 adjusted weight = 0.001 neff = 615.42
config 188/194=[ 0.00 12.75] weight = 0.004 adjusted weight = 0.000 neff = 780.62
config 189/194=[ 0.75 12.75] weight = 0.018 adjusted weight = 0.001 neff = 747.90
config 190/194=[ 1.50 12.75] weight = 0.049 adjusted weight = 0.002 neff = 715.71
config 191/194=[ 2.25 12.75] weight = 0.075 adjusted weight = 0.003 neff = 684.12
config 192/194=[ 3.00 12.75] weight = 0.066 adjusted weight = 0.002 neff = 653.20
config 193/194=[ 3.75 12.75] weight = 0.036 adjusted weight = 0.001 neff = 622.98
Done.
Expected effective number of parameters: 672.151(42.477), eqv.#replicates: 4.529
DIC:
Mean of Deviance................. 4875.21
Deviance at Mean................. 4256.11
Effective number of parameters... 619.098
DIC.............................. 5494.31
Marginal likelihood: Integration -2527.322941 Gaussian-approx -2528.533243
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d35c3917ee/Model.ini]
Preparations : 0.089 seconds
Approx inference: 582.917 seconds [0.0|0.0|1.8|86.8|11.4]%
Output : 0.567 seconds
---------------------------------
Total : 583.573 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d5a595] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d346bccdc2]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d315689fd6]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d346bccdc2]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 1, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 1, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 3, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 0, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 2, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 1, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 1, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d34efcaa83] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d3761064d2]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d3f9fcbc1]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d32e1ea6f8]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35b69dd37] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d333a74c4] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d372c7f183] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d324c10a54] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37d8d23a5] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d33d1f6608] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d35863b691] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d37a6716ec] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/data.files/filee1d36121ebc] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fbed8514630
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -2929.451329 fn= 1 theta= 3.990000 4.000000 range=[-1.536 4.853]
max.logdens= -2909.281453 fn= 5 theta= 3.109149 3.545704 range=[-1.485 5.016]
max.logdens= -2909.157946 fn= 6 theta= 3.109149 3.535704 range=[-1.484 5.019]
max.logdens= -2908.955369 fn= 7 theta= 3.099149 3.545704 range=[-1.485 5.017]
max.logdens= -2894.178014 fn= 11 theta= 2.708266 3.341271 range=[-1.462 5.097]
max.logdens= -2894.091434 fn= 12 theta= 2.708266 3.331271 range=[-1.460 5.100]
max.logdens= -2893.787245 fn= 13 theta= 2.698266 3.341271 range=[-1.462 5.098]
max.logdens= -2875.505992 fn= 16 theta= 2.327428 3.147059 range=[-1.443 5.179]
max.logdens= -2875.417146 fn= 17 theta= 2.327428 3.137059 range=[-1.442 5.182]
max.logdens= -2875.002427 fn= 18 theta= 2.317428 3.147059 range=[-1.443 5.180]
max.logdens= -2853.964874 fn= 21 theta= 1.965631 2.962558 range=[-1.435 5.263]
max.logdens= -2853.879415 fn= 22 theta= 1.965631 2.952558 range=[-1.434 5.266]
max.logdens= -2853.371180 fn= 24 theta= 1.955631 2.962558 range=[-1.435 5.264]
max.logdens= -2831.443492 fn= 26 theta= 1.621924 2.787282 range=[-1.441 5.351]
max.logdens= -2831.368598 fn= 27 theta= 1.621924 2.777282 range=[-1.440 5.353]
max.logdens= -2830.822643 fn= 29 theta= 1.611924 2.787282 range=[-1.442 5.352]
max.logdens= -2810.884244 fn= 31 theta= 1.295402 2.620770 range=[-1.462 5.446]
max.logdens= -2810.827219 fn= 32 theta= 1.295402 2.610770 range=[-1.461 5.449]
max.logdens= -2810.335992 fn= 33 theta= 1.285402 2.620770 range=[-1.464 5.448]
max.logdens= -2795.654925 fn= 36 theta= 0.985207 2.462583 range=[-1.492 5.557]
max.logdens= -2795.621297 fn= 37 theta= 0.985207 2.452583 range=[-1.491 5.560]
max.logdens= -2795.297219 fn= 39 theta= 0.975207 2.462583 range=[-1.494 5.559]
max.logdens= -2788.754872 fn= 41 theta= 0.690521 2.312306 range=[-1.525 5.691]
max.logdens= -2788.700196 fn= 43 theta= 0.680521 2.312306 range=[-1.527 5.694]
max.logdens= -2788.574721 fn= 47 theta= 0.641279 2.287195 range=[-1.531 5.716]
max.logdens= -2788.561548 fn= 49 theta= 0.641279 2.277195 range=[-1.530 5.719]
Iter=1 |grad|=1.32 |x-x.old|=2.67 |f-f.old|=141
max.logdens= -2788.474600 fn= 53 theta= 0.703875 2.081121 range=[-1.496 5.749]
max.logdens= -2788.460250 fn= 54 theta= 0.703875 2.071121 range=[-1.495 5.752]
max.logdens= -2788.424503 fn= 55 theta= 0.693875 2.081121 range=[-1.498 5.753]
Iter=2 |grad|=4.76 |x-x.old|=0.122 |f-f.old|=0.105
max.logdens= -2788.293385 fn= 63 theta= 0.695480 1.960973 range=[-1.485 5.783]
max.logdens= -2788.255907 fn= 65 theta= 0.685480 1.960973 range=[-1.486 5.787]
max.logdens= -2788.150664 fn= 69 theta= 0.699979 1.784849 range=[-1.466 5.823]
max.logdens= -2788.142837 fn= 70 theta= 0.699979 1.774849 range=[-1.465 5.825]
max.logdens= -2788.131583 fn= 72 theta= 0.689979 1.784849 range=[-1.467 5.827]
max.logdens= -2788.117066 fn= 74 theta= 0.702172 1.698971 range=[-1.457 5.841]
max.logdens= -2788.103319 fn= 75 theta= 0.692172 1.698971 range=[-1.458 5.845]
max.logdens= -2788.098983 fn= 81 theta= 0.693692 1.639461 range=[-1.453 5.857]
Iter=3 |grad|=1.21 |x-x.old|=0.342 |f-f.old|=0.363
max.logdens= -2788.098546 fn= 90 theta= 0.691678 1.669768 range=[-1.456 5.852]
max.logdens= -2788.097762 fn= 91 theta= 0.691678 1.659768 range=[-1.455 5.854]
Iter=4 |grad|=0.271 |x-x.old|=0.0219 |f-f.old|=0.00802
max.logdens= -2788.097743 fn= 104 theta= 0.692285 1.656066 range=[-1.454 5.854]
max.logdens= -2788.097667 fn= 110 theta= 0.692289 1.654489 range=[-1.454 5.855]
max.logdens= -2788.096599 fn= 113 theta= 0.692290 1.663918 range=[-1.455 5.853]
Iter=5 |grad|=0.216 |x-x.old|=0.00306(pass) |f-f.old|=0.000371 Reached numerical limit!
Number of function evaluations = 126
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
131.151921 13.485154
13.485154 10.355639
Eigenvectors of the Hessian
0.993974 -0.109613
0.109613 0.993974
Eigenvalues of the Hessian
132.639035
8.868524
StDev/Correlation matrix (scaled inverse Hessian)
0.093827 -0.365915
0.333907
Compute corrected stdev for theta[0]: negative 1.051861 positive 1.098782
Compute corrected stdev for theta[1]: negative 1.424771 positive 1.711573
max.logdens= -2788.098018 fn= 140 theta= 0.692290 1.663918 range=[-1.455 5.853]
config 0=[ 0.00 0.00] log(rel.dens)=-0.12, [1] accept, compute, 12.14s
config 1=[ 0.75 0.00] log(rel.dens)=-0.36, [0] accept, compute, 12.15s
config 2=[ -0.75 0.00] log(rel.dens)=-0.45, [3] accept, compute, 12.17s
config 3=[ 0.00 -0.75] log(rel.dens)=-0.11, [2] accept, compute, 12.20s
config 4=[ 0.75 -0.75] log(rel.dens)=-0.38, [2] accept, compute, 10.55s
config 5=[ 0.00 0.75] log(rel.dens)=-0.12, [1] accept, compute, 10.62s
config 6=[ -0.75 0.75] log(rel.dens)=-0.60, [0] accept, compute, 10.62s
config 7=[ -0.75 -0.75] log(rel.dens)=-0.36, [3] accept, compute, 10.65s
config 8=[ 0.75 0.75] log(rel.dens)=-0.41, [2] accept, compute, 10.34s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.50, [1] accept, compute, 10.33s
config 10=[ -1.50 0.00] log(rel.dens)=-1.05, [0] accept, compute, 10.33s
config 11=[ 1.50 0.00] log(rel.dens)=-0.95, [3] accept, compute, 10.42s
config 12=[ 0.00 1.50] log(rel.dens)=-0.41, [2] accept, compute, 10.27s
config 13=[ -0.75 1.50] log(rel.dens)=-0.71, [1] accept, compute, 10.35s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.67, [0] accept, compute, 10.35s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.77, [3] accept, compute, 10.41s
config 16=[ -1.50 -0.75] log(rel.dens)=-1.27, [1] accept, compute, 10.07s
config 17=[ 0.75 1.50] log(rel.dens)=-0.54, [2] accept, compute, 10.20s
config 18=[ 1.50 -0.75] log(rel.dens)=-1.08, [0] accept, compute, 10.28s
config 19=[ -1.50 0.75] log(rel.dens)=-1.21, [3] accept, compute, 10.17s
config 20=[ -1.50 -1.50] log(rel.dens)=-1.52, [2] accept, compute, 10.25s
config 21=[ 1.50 0.75] log(rel.dens)=-1.02, [1] accept, compute, 10.38s
config 22=[ 1.50 1.50] log(rel.dens)=-1.32, [0] accept, compute, 10.33s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.25, [3] accept, compute, 10.28s
config 24=[ -1.50 1.50] log(rel.dens)=-1.65, [2] accept, compute, 10.33s
config 25=[ 0.00 -2.25] log(rel.dens)=-1.31, [1] accept, compute, 10.30s
config 26=[ 2.25 0.00] log(rel.dens)=-2.19, [0] accept, compute, 10.28s
config 27=[ -2.25 0.00] log(rel.dens)=-2.31, [3] accept, compute, 10.31s
config 28=[ 0.00 2.25] log(rel.dens)=-0.86, [2] accept, compute, 10.49s
config 29=[ 2.25 0.75] log(rel.dens)=-2.15, [1] accept, compute, 10.64s
config 30=[ -0.75 -2.25] log(rel.dens)=-1.68, [0] accept, compute, 10.70s
config 31=[ 0.75 -2.25] log(rel.dens)=-1.36, [3] accept, compute, 10.72s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.33, [2] accept, compute, 10.41s
config 33=[ 2.25 -0.75] log(rel.dens)=-2.15, [1] accept, compute, 10.46s
config 34=[ -2.25 0.75] log(rel.dens)=-2.62, [3] accept, compute, 10.39s
config 35=[ -0.75 2.25] log(rel.dens)=-1.18, [0] accept, compute, 10.44s
config 36=[ 0.75 2.25] log(rel.dens)=-0.75, [2] accept, compute, 10.46s
config 37=[ -2.25 -1.50] log(rel.dens)=-2.78, [1] accept, compute, 10.38s
config 38=[ -1.50 -2.25] log(rel.dens)=-2.50, [0] accept, compute, 10.40s
config 39=[ 2.25 -1.50] log(rel.dens)=-2.20, [3] accept, compute, 10.41s
config 40=[ 2.25 1.50] log(rel.dens)=-2.46, [2] accept, compute, 10.54s
config 41=[ -1.50 2.25] log(rel.dens)=-2.26, [1] accept, compute, 10.56s
config 42=[ -2.25 1.50] log(rel.dens)=-3.19, [3] accept, compute, 10.58s
config 43=[ 1.50 -2.25] log(rel.dens)=-1.80, [0] accept, compute, 10.61s
config 44=[ 1.50 2.25] log(rel.dens)=-1.39, [2] accept, compute, 9.87s
config 45=[ 0.00 3.00] log(rel.dens)=-1.29, [1] accept, compute, 9.85s
config 46=[ 3.00 0.00] log(rel.dens)=-3.58, [3] accept, compute, 9.90s
config 47=[ 0.00 -3.00] log(rel.dens)=-2.72, [0] accept, compute, 9.95s
config 48=[ -3.00 0.00] log(rel.dens)=-4.22, [2] accept, compute, 10.39s
config 49=[ -0.75 -3.00] log(rel.dens)=-3.24, [1] accept, compute, 10.29s
config 50=[ -3.00 0.75] log(rel.dens)=-4.66, [3] accept, compute, 10.40s
config 51=[ 3.00 0.75] log(rel.dens)=-3.69, [0] accept, compute, 10.38s
config 52=[ 0.75 -3.00] log(rel.dens)=-2.73, [1] accept, compute, 10.00s
config 53=[ -0.75 3.00] log(rel.dens)=-1.76, [2] accept, compute, 10.14s
config 54=[ 3.00 -0.75] log(rel.dens)=-3.57, [0] accept, compute, 9.93s
config 55=[ 0.75 3.00] log(rel.dens)=-1.05, [3] accept, compute, 10.23s
config 56=[ -3.00 -0.75] log(rel.dens)=-4.16, [1] accept, compute, 10.05s
config 57=[ 2.25 2.25] log(rel.dens)=-2.37, [2] accept, compute, 9.96s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.58, [0] accept, compute, 10.25s
config 59=[ -2.25 -2.25] log(rel.dens)=-3.80, [3] accept, compute, 10.01s
config 60=[ -2.25 2.25] log(rel.dens)=-3.95, [1] accept, compute, 9.86s
config 61=[ -1.50 3.00] log(rel.dens)=-3.01, [2] accept, compute, 9.93s
config 62=[ -3.00 -1.50] log(rel.dens)=-4.58, [0] accept, compute, 9.92s
config 63=[ 1.50 -3.00] log(rel.dens)=-2.83, [3] accept, compute, 10.32s
config 64=[ 3.00 1.50] log(rel.dens)=-3.80, [1] accept, compute, 10.24s
config 65=[ 1.50 3.00] log(rel.dens)=-1.51, [2] accept, compute, 10.38s
config 66=[ -3.00 1.50] log(rel.dens)=-5.35, [0] accept, compute, 10.20s
config 67=[ -1.50 -3.00] log(rel.dens)=-4.18, [3] accept, compute, 10.37s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.48, [1] accept, compute, 10.02s
config 69=[ -3.00 2.25] log(rel.dens)=-6.33, reject, 0.28s
config 70=[ -2.25 -3.00] log(rel.dens)=-5.59, [2] accept, compute, 10.21s
config 71=[ 2.25 -3.00] log(rel.dens)=-3.41, [0] accept, compute, 10.04s
config 72=[ 0.00 -3.75] log(rel.dens)=-5.10, [3] accept, compute, 10.07s
config 73=[ 3.00 -2.25] log(rel.dens)=-3.71, [1] accept, compute, 10.40s
config 74=[ 3.00 2.25] log(rel.dens)=-3.87, [2] accept, compute, 10.43s
config 75=[ -3.00 -2.25] log(rel.dens)=-5.62, [0] accept, compute, 10.35s
config 76=[ 2.25 3.00] log(rel.dens)=-2.47, [3] accept, compute, 10.56s
config 77=[ -3.75 0.00] log(rel.dens)=-6.76, reject, 0.35s
config 78=[ 0.00 3.75] log(rel.dens)=-1.62, [1] accept, compute, 10.10s
config 79=[ -2.25 3.00] log(rel.dens)=-4.91, [2] accept, compute, 10.31s
config 80=[ 3.75 0.00] log(rel.dens)=-5.44, [0] accept, compute, 10.43s
config 81=[ -0.75 3.75] log(rel.dens)=-2.43, [3] accept, compute, 10.23s
config 82=[ 0.75 -3.75] log(rel.dens)=-4.64, [1] accept, compute, 12.60s
config 83=[ 3.75 0.75] log(rel.dens)=-5.60, [2] accept, compute, 12.57s
config 84=[ 3.75 -0.75] log(rel.dens)=-5.25, [0] accept, compute, 12.57s
config 85=[ 0.75 3.75] log(rel.dens)=-1.59, [3] accept, compute, 12.85s
config 86=[ -1.50 -3.75] log(rel.dens)=-6.85, reject, 0.34s
config 87=[ -0.75 -3.75] log(rel.dens)=-5.84, [1] accept, compute, 10.46s
config 88=[ -1.50 3.75] log(rel.dens)=-3.89, [2] accept, compute, 10.58s
config 89=[ 3.75 1.50] log(rel.dens)=-5.87, [0] accept, compute, 10.36s
config 90=[ -3.00 -3.00] log(rel.dens)=-7.52, reject, 0.31s
config 91=[ 1.50 -3.75] log(rel.dens)=-4.61, [3] accept, compute, 10.36s
config 92=[ 1.50 3.75] log(rel.dens)=-1.72, [1] accept, compute, 9.94s
config 93=[ 3.75 -1.50] log(rel.dens)=-5.10, [2] accept, compute, 10.07s
config 94=[ 3.00 -3.00] log(rel.dens)=-4.28, [0] accept, compute, 10.08s
config 95=[ 3.00 3.00] log(rel.dens)=-3.89, [3] accept, compute, 10.04s
config 96=[ 2.25 -3.75] log(rel.dens)=-4.91, [1] accept, compute, 10.10s
config 97=[ 2.25 3.75] log(rel.dens)=-2.55, [2] accept, compute, 10.33s
config 98=[ 3.75 -2.25] log(rel.dens)=-5.19, [0] accept, compute, 10.01s
config 99=[ 0.00 -4.50] log(rel.dens)=-8.47, reject, 0.30s
config 100=[ 4.50 0.00] log(rel.dens)=-7.59, reject, 0.32s
config 101=[ 3.75 2.25] log(rel.dens)=-5.81, [3] accept, compute, 10.04s
config 102=[ -2.25 3.75] log(rel.dens)=-5.99, [1] accept, compute, 10.27s
config 103=[ 0.00 4.50] log(rel.dens)=-2.17, [2] accept, compute, 10.45s
config 104=[ -0.75 4.50] log(rel.dens)=-3.21, [0] accept, compute, 10.30s
config 105=[ 0.75 4.50] log(rel.dens)=-1.77, [3] accept, compute, 10.51s
config 106=[ -1.50 4.50] log(rel.dens)=-4.87, [1] accept, compute, 10.04s
config 107=[ 1.50 4.50] log(rel.dens)=-2.12, [2] accept, compute, 10.01s
config 108=[ 3.75 -3.00] log(rel.dens)=-5.43, [0] accept, compute, 9.96s
config 109=[ -2.25 4.50] log(rel.dens)=-7.20, reject, 0.37s
config 110=[ 3.00 3.75] log(rel.dens)=-3.86, [3] accept, compute, 9.90s
config 111=[ 3.75 3.00] log(rel.dens)=-5.73, [1] accept, compute, 10.13s
config 112=[ 3.00 -3.75] log(rel.dens)=-5.49, [2] accept, compute, 10.14s
config 113=[ 2.25 4.50] log(rel.dens)=-2.63, [0] accept, compute, 10.02s
config 114=[ 0.00 5.25] log(rel.dens)=-2.78, [3] accept, compute, 10.14s
config 115=[ 3.75 -3.75] log(rel.dens)=-6.33, reject, 0.31s
config 116=[ 3.75 3.75] log(rel.dens)=-5.63, [1] accept, compute, 9.81s
config 117=[ -0.75 5.25] log(rel.dens)=-4.03, [2] accept, compute, 9.99s
config 118=[ 0.75 5.25] log(rel.dens)=-2.17, [0] accept, compute, 10.05s
config 119=[ 3.00 4.50] log(rel.dens)=-3.82, [3] accept, compute, 10.12s
config 120=[ 1.50 5.25] log(rel.dens)=-2.15, [1] accept, compute, 10.01s
config 121=[ -1.50 5.25] log(rel.dens)=-5.95, [2] accept, compute, 9.93s
config 122=[ 2.25 5.25] log(rel.dens)=-2.87, [0] accept, compute, 9.91s
config 123=[ 3.75 4.50] log(rel.dens)=-5.50, [3] accept, compute, 9.87s
config 124=[ 0.00 6.00] log(rel.dens)=-3.43, [1] accept, compute, 10.04s
config 125=[ 3.00 5.25] log(rel.dens)=-3.74, [2] accept, compute, 10.16s
config 126=[ -1.50 6.00] log(rel.dens)=-7.03, reject, 0.32s
config 127=[ 0.75 6.00] log(rel.dens)=-2.61, [0] accept, compute, 10.08s
config 128=[ -0.75 6.00] log(rel.dens)=-4.90, [3] accept, compute, 10.09s
config 129=[ 1.50 6.00] log(rel.dens)=-2.60, [1] accept, compute, 9.88s
config 130=[ 2.25 6.00] log(rel.dens)=-2.75, [2] accept, compute, 9.90s
config 131=[ 3.75 5.25] log(rel.dens)=-5.25, [0] accept, compute, 9.87s
config 132=[ 3.00 6.00] log(rel.dens)=-3.63, [3] accept, compute, 10.05s
config 133=[ 0.00 6.75] log(rel.dens)=-4.14, [1] accept, compute, 10.00s
config 134=[ -0.75 6.75] log(rel.dens)=-5.84, [2] accept, compute, 9.98s
config 135=[ 0.75 6.75] log(rel.dens)=-3.09, [0] accept, compute, 9.99s
config 136=[ 1.50 6.75] log(rel.dens)=-2.66, [3] accept, compute, 9.99s
config 137=[ 3.75 6.00] log(rel.dens)=-5.01, [1] accept, compute, 9.95s
config 138=[ -0.75 7.50] log(rel.dens)=-6.87, reject, 0.32s
config 139=[ 2.25 6.75] log(rel.dens)=-2.81, [2] accept, compute, 10.18s
config 140=[ 3.00 6.75] log(rel.dens)=-3.51, [0] accept, compute, 10.03s
config 141=[ 0.00 7.50] log(rel.dens)=-4.90, [3] accept, compute, 9.98s
config 142=[ 0.75 7.50] log(rel.dens)=-3.83, [1] accept, compute, 9.92s
config 143=[ 1.50 7.50] log(rel.dens)=-3.05, [2] accept, compute, 9.92s
config 144=[ 3.75 6.75] log(rel.dens)=-4.77, [0] accept, compute, 9.97s
config 145=[ 2.25 7.50] log(rel.dens)=-2.89, [3] accept, compute, 9.84s
config 146=[ 3.00 7.50] log(rel.dens)=-3.40, [1] accept, compute, 10.07s
config 147=[ 0.00 8.25] log(rel.dens)=-5.71, [2] accept, compute, 10.08s
config 148=[ 0.75 8.25] log(rel.dens)=-4.17, [0] accept, compute, 9.99s
config 149=[ 1.50 8.25] log(rel.dens)=-3.37, [3] accept, compute, 9.94s
config 150=[ 0.00 9.00] log(rel.dens)=-6.59, reject, 0.32s
config 151=[ 3.75 7.50] log(rel.dens)=-4.47, [1] accept, compute, 10.15s
config 152=[ 2.25 8.25] log(rel.dens)=-2.99, [2] accept, compute, 9.94s
config 153=[ 3.00 8.25] log(rel.dens)=-3.29, [0] accept, compute, 9.82s
config 154=[ 3.75 8.25] log(rel.dens)=-4.13, [3] accept, compute, 9.29s
Combine the densities with relative weights:
config 0/144=[ 0.00 0.00] weight = 0.984 adjusted weight = 0.821 neff = 728.18
config 1/144=[ 0.75 0.00] weight = 0.776 adjusted weight = 0.656 neff = 701.68
config 2/144=[ -0.75 0.00] weight = 0.707 adjusted weight = 0.597 neff = 755.37
config 3/144=[ 0.00 -0.75] weight = 1.000 adjusted weight = 0.845 neff = 728.90
config 4/144=[ 0.75 -0.75] weight = 0.761 adjusted weight = 0.652 neff = 703.14
config 5/144=[ 0.00 0.75] weight = 0.989 adjusted weight = 0.835 neff = 729.80
config 6/144=[ -0.75 0.75] weight = 0.612 adjusted weight = 0.524 neff = 757.69
config 7/144=[ -0.75 -0.75] weight = 0.776 adjusted weight = 0.664 neff = 755.34
config 8/144=[ 0.75 0.75] weight = 0.740 adjusted weight = 0.633 neff = 702.83
config 9/144=[ 0.00 -1.50] weight = 0.674 adjusted weight = 0.592 neff = 732.96
config 10/144=[ -1.50 0.00] weight = 0.387 adjusted weight = 0.340 neff = 782.76
config 11/144=[ 1.50 0.00] weight = 0.428 adjusted weight = 0.376 neff = 675.67
config 12/144=[ 0.00 1.50] weight = 0.735 adjusted weight = 0.645 neff = 733.81
config 13/144=[ -0.75 1.50] weight = 0.545 adjusted weight = 0.485 neff = 761.87
config 14/144=[ 0.75 -1.50] weight = 0.569 adjusted weight = 0.506 neff = 707.88
config 15/144=[ -0.75 -1.50] weight = 0.512 adjusted weight = 0.456 neff = 758.64
config 16/144=[ -1.50 -0.75] weight = 0.313 adjusted weight = 0.278 neff = 782.55
config 17/144=[ 0.75 1.50] weight = 0.646 adjusted weight = 0.575 neff = 706.18
config 18/144=[ 1.50 -0.75] weight = 0.378 adjusted weight = 0.336 neff = 677.98
config 19/144=[ -1.50 0.75] weight = 0.331 adjusted weight = 0.294 neff = 785.59
config 20/144=[ -1.50 -1.50] weight = 0.242 adjusted weight = 0.224 neff = 784.87
config 21/144=[ 1.50 0.75] weight = 0.401 adjusted weight = 0.356 neff = 676.24
config 22/144=[ 1.50 1.50] weight = 0.295 adjusted weight = 0.273 neff = 679.37
config 23/144=[ 1.50 -1.50] weight = 0.320 adjusted weight = 0.296 neff = 683.42
config 24/144=[ -1.50 1.50] weight = 0.214 adjusted weight = 0.197 neff = 790.55
config 25/144=[ 0.00 -2.25] weight = 0.299 adjusted weight = 0.280 neff = 740.80
config 26/144=[ 2.25 0.00] weight = 0.125 adjusted weight = 0.116 neff = 650.59
config 27/144=[ -2.25 0.00] weight = 0.110 adjusted weight = 0.103 neff = 810.81
config 28/144=[ 0.00 2.25] weight = 0.470 adjusted weight = 0.440 neff = 739.68
config 29/144=[ 2.25 0.75] weight = 0.129 adjusted weight = 0.122 neff = 650.41
config 30/144=[ -0.75 -2.25] weight = 0.207 adjusted weight = 0.196 neff = 765.65
config 31/144=[ 0.75 -2.25] weight = 0.285 adjusted weight = 0.270 neff = 716.55
config 32/144=[ -2.25 -0.75] weight = 0.108 adjusted weight = 0.102 neff = 809.77
config 33/144=[ 2.25 -0.75] weight = 0.130 adjusted weight = 0.123 neff = 653.43
config 34/144=[ -2.25 0.75] weight = 0.081 adjusted weight = 0.077 neff = 814.27
config 35/144=[ -0.75 2.25] weight = 0.341 adjusted weight = 0.323 neff = 768.07
config 36/144=[ 0.75 2.25] weight = 0.526 adjusted weight = 0.498 neff = 711.38
config 37/144=[ -2.25 -1.50] weight = 0.069 adjusted weight = 0.068 neff = 811.65
config 38/144=[ -1.50 -2.25] weight = 0.091 adjusted weight = 0.090 neff = 791.07
config 39/144=[ 2.25 -1.50] weight = 0.123 adjusted weight = 0.121 neff = 659.59
config 40/144=[ 2.25 1.50] weight = 0.095 adjusted weight = 0.094 neff = 653.01
config 41/144=[ -1.50 2.25] weight = 0.116 adjusted weight = 0.114 neff = 797.19
config 42/144=[ -2.25 1.50] weight = 0.046 adjusted weight = 0.045 neff = 819.73
config 43/144=[ 1.50 -2.25] weight = 0.184 adjusted weight = 0.181 neff = 692.90
config 44/144=[ 1.50 2.25] weight = 0.277 adjusted weight = 0.273 neff = 683.99
config 45/144=[ 0.00 3.00] weight = 0.307 adjusted weight = 0.313 neff = 746.88
config 46/144=[ 3.00 0.00] weight = 0.031 adjusted weight = 0.031 neff = 625.86
config 47/144=[ 0.00 -3.00] weight = 0.073 adjusted weight = 0.074 neff = 753.10
config 48/144=[ -3.00 0.00] weight = 0.016 adjusted weight = 0.017 neff = 839.43
config 49/144=[ -0.75 -3.00] weight = 0.043 adjusted weight = 0.045 neff = 777.02
config 50/144=[ -3.00 0.75] weight = 0.011 adjusted weight = 0.011 neff = 843.45
config 51/144=[ 3.00 0.75] weight = 0.028 adjusted weight = 0.029 neff = 625.23
config 52/144=[ 0.75 -3.00] weight = 0.072 adjusted weight = 0.075 neff = 729.94
config 53/144=[ -0.75 3.00] weight = 0.191 adjusted weight = 0.197 neff = 775.69
config 54/144=[ 3.00 -0.75] weight = 0.031 adjusted weight = 0.032 neff = 629.51
config 55/144=[ 0.75 3.00] weight = 0.389 adjusted weight = 0.401 neff = 718.16
config 56/144=[ -3.00 -0.75] weight = 0.017 adjusted weight = 0.018 neff = 837.76
config 57/144=[ 2.25 2.25] weight = 0.104 adjusted weight = 0.109 neff = 657.03
config 58/144=[ 2.25 -2.25] weight = 0.084 adjusted weight = 0.088 neff = 669.89
config 59/144=[ -2.25 -2.25] weight = 0.025 adjusted weight = 0.026 neff = 817.03
config 60/144=[ -2.25 2.25] weight = 0.021 adjusted weight = 0.022 neff = 826.80
config 61/144=[ -1.50 3.00] weight = 0.055 adjusted weight = 0.059 neff = 805.22
config 62/144=[ -3.00 -1.50] weight = 0.011 adjusted weight = 0.012 neff = 838.94
config 63/144=[ 1.50 -3.00] weight = 0.065 adjusted weight = 0.070 neff = 707.04
config 64/144=[ 3.00 1.50] weight = 0.025 adjusted weight = 0.027 neff = 627.02
config 65/144=[ 1.50 3.00] weight = 0.246 adjusted weight = 0.263 neff = 690.24
config 66/144=[ -3.00 1.50] weight = 0.005 adjusted weight = 0.006 neff = 849.34
config 67/144=[ -1.50 -3.00] weight = 0.017 adjusted weight = 0.018 neff = 801.51
config 68/144=[ 3.00 -1.50] weight = 0.034 adjusted weight = 0.037 neff = 636.39
config 69/144=[ -2.25 -3.00] weight = 0.004 adjusted weight = 0.005 neff = 826.56
config 70/144=[ 2.25 -3.00] weight = 0.037 adjusted weight = 0.042 neff = 684.94
config 71/144=[ 0.00 -3.75] weight = 0.007 adjusted weight = 0.008 neff = 770.73
config 72/144=[ 3.00 -2.25] weight = 0.027 adjusted weight = 0.031 neff = 647.54
config 73/144=[ 3.00 2.25] weight = 0.023 adjusted weight = 0.026 neff = 630.82
config 74/144=[ -3.00 -2.25] weight = 0.004 adjusted weight = 0.005 neff = 843.50
config 75/144=[ 2.25 3.00] weight = 0.094 adjusted weight = 0.107 neff = 662.93
config 76/144=[ 0.00 3.75] weight = 0.219 adjusted weight = 0.248 neff = 755.07
config 77/144=[ -2.25 3.00] weight = 0.008 adjusted weight = 0.009 neff = 835.21
config 78/144=[ 3.75 0.00] weight = 0.005 adjusted weight = 0.005 neff = 601.97
config 79/144=[ -0.75 3.75] weight = 0.097 adjusted weight = 0.112 neff = 784.47
config 80/144=[ 0.75 -3.75] weight = 0.011 adjusted weight = 0.012 neff = 748.28
config 81/144=[ 3.75 0.75] weight = 0.004 adjusted weight = 0.005 neff = 600.73
config 82/144=[ 3.75 -0.75] weight = 0.006 adjusted weight = 0.007 neff = 606.17
config 83/144=[ 0.75 3.75] weight = 0.227 adjusted weight = 0.260 neff = 726.45
config 84/144=[ -0.75 -3.75] weight = 0.003 adjusted weight = 0.004 neff = 793.64
config 85/144=[ -1.50 3.75] weight = 0.023 adjusted weight = 0.027 neff = 814.37
config 86/144=[ 3.75 1.50] weight = 0.003 adjusted weight = 0.004 neff = 602.20
config 87/144=[ 1.50 -3.75] weight = 0.011 adjusted weight = 0.013 neff = 726.55
config 88/144=[ 1.50 3.75] weight = 0.198 adjusted weight = 0.236 neff = 697.87
config 89/144=[ 3.75 -1.50] weight = 0.007 adjusted weight = 0.008 neff = 613.89
config 90/144=[ 3.00 -3.00] weight = 0.015 adjusted weight = 0.019 neff = 663.45
config 91/144=[ 3.00 3.00] weight = 0.023 adjusted weight = 0.028 neff = 636.24
config 92/144=[ 2.25 -3.75] weight = 0.008 adjusted weight = 0.010 neff = 705.45
config 93/144=[ 2.25 3.75] weight = 0.087 adjusted weight = 0.110 neff = 670.12
config 94/144=[ 3.75 -2.25] weight = 0.006 adjusted weight = 0.008 neff = 625.94
config 95/144=[ 3.75 2.25] weight = 0.003 adjusted weight = 0.004 neff = 605.31
config 96/144=[ -2.25 3.75] weight = 0.003 adjusted weight = 0.004 neff = 844.69
config 97/144=[ 0.00 4.50] weight = 0.127 adjusted weight = 0.162 neff = 764.45
config 98/144=[ -0.75 4.50] weight = 0.045 adjusted weight = 0.058 neff = 794.22
config 99/144=[ 0.75 4.50] weight = 0.190 adjusted weight = 0.246 neff = 735.22
config 100/144=[ -1.50 4.50] weight = 0.009 adjusted weight = 0.011 neff = 824.43
config 101/144=[ 1.50 4.50] weight = 0.134 adjusted weight = 0.180 neff = 706.78
config 102/144=[ 3.75 -3.00] weight = 0.005 adjusted weight = 0.007 neff = 642.62
config 103/144=[ 3.00 3.75] weight = 0.023 adjusted weight = 0.032 neff = 643.01
config 104/144=[ 3.75 3.00] weight = 0.004 adjusted weight = 0.005 neff = 610.21
config 105/144=[ 3.00 -3.75] weight = 0.005 adjusted weight = 0.006 neff = 684.96
config 106/144=[ 2.25 4.50] weight = 0.080 adjusted weight = 0.115 neff = 678.42
config 107/144=[ 0.00 5.25] weight = 0.069 adjusted weight = 0.102 neff = 774.64
config 108/144=[ 3.75 3.75] weight = 0.004 adjusted weight = 0.006 neff = 616.56
config 109/144=[ -0.75 5.25] weight = 0.020 adjusted weight = 0.030 neff = 804.71
config 110/144=[ 0.75 5.25] weight = 0.127 adjusted weight = 0.189 neff = 745.08
config 111/144=[ 3.00 4.50] weight = 0.024 adjusted weight = 0.038 neff = 650.92
config 112/144=[ 1.50 5.25] weight = 0.129 adjusted weight = 0.200 neff = 716.05
config 113/144=[ -1.50 5.25] weight = 0.003 adjusted weight = 0.005 neff = 835.24
config 114/144=[ 2.25 5.25] weight = 0.063 adjusted weight = 0.104 neff = 687.84
config 115/144=[ 3.75 4.50] weight = 0.005 adjusted weight = 0.008 neff = 624.09
config 116/144=[ 0.00 6.00] weight = 0.036 adjusted weight = 0.062 neff = 785.48
config 117/144=[ 3.00 5.25] weight = 0.026 adjusted weight = 0.048 neff = 659.72
config 118/144=[ 0.75 6.00] weight = 0.081 adjusted weight = 0.142 neff = 755.62
config 119/144=[ -0.75 6.00] weight = 0.008 adjusted weight = 0.014 neff = 815.81
config 120/144=[ 1.50 6.00] weight = 0.082 adjusted weight = 0.149 neff = 726.56
config 121/144=[ 2.25 6.00] weight = 0.071 adjusted weight = 0.137 neff = 697.49
config 122/144=[ 3.75 5.25] weight = 0.006 adjusted weight = 0.012 neff = 632.48
config 123/144=[ 3.00 6.00] weight = 0.029 adjusted weight = 0.062 neff = 669.29
config 124/144=[ 0.00 6.75] weight = 0.018 adjusted weight = 0.036 neff = 796.85
config 125/144=[ -0.75 6.75] weight = 0.003 adjusted weight = 0.007 neff = 827.42
config 126/144=[ 0.75 6.75] weight = 0.051 adjusted weight = 0.104 neff = 766.73
config 127/144=[ 1.50 6.75] weight = 0.078 adjusted weight = 0.167 neff = 737.09
config 128/144=[ 3.75 6.00] weight = 0.007 adjusted weight = 0.017 neff = 641.70
config 129/144=[ 2.25 6.75] weight = 0.067 adjusted weight = 0.152 neff = 708.00
config 130/144=[ 3.00 6.75] weight = 0.033 adjusted weight = 0.082 neff = 679.47
config 131/144=[ 0.00 7.50] weight = 0.008 adjusted weight = 0.020 neff = 808.66
config 132/144=[ 0.75 7.50] weight = 0.024 adjusted weight = 0.059 neff = 778.59
config 133/144=[ 1.50 7.50] weight = 0.053 adjusted weight = 0.135 neff = 748.52
config 134/144=[ 3.75 6.75] weight = 0.009 adjusted weight = 0.026 neff = 651.60
config 135/144=[ 2.25 7.50] weight = 0.062 adjusted weight = 0.168 neff = 719.00
config 136/144=[ 3.00 7.50] weight = 0.037 adjusted weight = 0.110 neff = 690.17
config 137/144=[ 0.00 8.25] weight = 0.004 adjusted weight = 0.011 neff = 820.82
config 138/144=[ 0.75 8.25] weight = 0.017 adjusted weight = 0.050 neff = 790.22
config 139/144=[ 1.50 8.25] weight = 0.038 adjusted weight = 0.115 neff = 760.21
config 140/144=[ 3.75 7.50] weight = 0.013 adjusted weight = 0.042 neff = 662.00
config 141/144=[ 2.25 8.25] weight = 0.056 adjusted weight = 0.180 neff = 730.42
config 142/144=[ 3.00 8.25] weight = 0.042 adjusted weight = 0.145 neff = 701.31
config 143/144=[ 3.75 8.25] weight = 0.018 adjusted weight = 0.069 neff = 672.78
Done.
Expected effective number of parameters: 727.269(39.252), eqv.#replicates: 4.186
DIC:
Mean of Deviance................. 5310.79
Deviance at Mean................. 4634.12
Effective number of parameters... 676.665
DIC.............................. 5987.45
Marginal likelihood: Integration -2788.774373 Gaussian-approx -2789.795211
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d3372697df/Model.ini]
Preparations : 0.091 seconds
Approx inference: 424.708 seconds [0.1|0.0|2.9|87.9|9.1]%
Output : 0.522 seconds
---------------------------------
Total : 425.322 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3360ace8a] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3535a2412]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d342f6447e]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3535a2412]
0/3044 (idx,a,y,d) = (0, 0.317125, 1, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 1, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 1, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 1, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 1, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 1, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 1, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d334e8f242] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d371625420]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d315659330]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32978e631]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37f7de1bd] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3216f80af] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d31f69724f] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d343cfb0a5] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d37856436a] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3676421de] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d35eebaad9] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d3421dbd3e] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/data.files/filee1d32e73535b] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fb53a5166e0
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -2766.953806 fn= 1 theta= 4.010000 4.000000 range=[-1.203 4.974]
max.logdens= -2766.572061 fn= 2 theta= 4.000000 3.990000 range=[-1.203 4.976]
max.logdens= -2766.453969 fn= 3 theta= 3.990000 4.000000 range=[-1.203 4.975]
max.logdens= -2725.336088 fn= 5 theta= 3.118365 3.528068 range=[-1.223 5.084]
max.logdens= -2724.770225 fn= 6 theta= 3.108365 3.528068 range=[-1.223 5.085]
max.logdens= -2684.124946 fn= 11 theta= 2.592504 3.246580 range=[-1.237 5.169]
max.logdens= -2683.954922 fn= 12 theta= 2.592504 3.236580 range=[-1.237 5.170]
max.logdens= -2683.295429 fn= 14 theta= 2.582504 3.246580 range=[-1.237 5.171]
max.logdens= -2619.873129 fn= 16 theta= 1.977876 2.917574 range=[-1.256 5.309]
max.logdens= -2618.795045 fn= 18 theta= 1.967876 2.917574 range=[-1.256 5.311]
max.logdens= -2548.449819 fn= 21 theta= 1.358657 2.586112 range=[-1.294 5.489]
max.logdens= -2548.321241 fn= 22 theta= 1.358657 2.576112 range=[-1.295 5.490]
max.logdens= -2547.377992 fn= 23 theta= 1.348657 2.586112 range=[-1.295 5.492]
max.logdens= -2499.409735 fn= 26 theta= 0.859221 2.318768 range=[-1.351 5.697]
max.logdens= -2498.624644 fn= 27 theta= 0.849221 2.318768 range=[-1.352 5.702]
max.logdens= -2478.875717 fn= 31 theta= 0.539487 2.147617 range=[-1.403 5.880]
max.logdens= -2478.841620 fn= 32 theta= 0.539487 2.137617 range=[-1.404 5.881]
max.logdens= -2478.436820 fn= 33 theta= 0.529487 2.147617 range=[-1.404 5.886]
max.logdens= -2471.503746 fn= 36 theta= 0.271695 2.004271 range=[-1.459 6.069]
max.logdens= -2471.496486 fn= 38 theta= 0.271695 1.994271 range=[-1.460 6.071]
max.logdens= -2471.431925 fn= 39 theta= 0.261695 2.004271 range=[-1.460 6.077]
max.logdens= -2471.294073 fn= 42 theta= 0.221610 1.977460 range=[-1.471 6.109]
max.logdens= -2471.293125 fn= 45 theta= 0.221610 1.967460 range=[-1.471 6.110]
Iter=1 |grad|=0.235 |x-x.old|=3.03 |f-f.old|=295
max.logdens= -2471.293066 fn= 55 theta= 0.221367 1.977445 range=[-1.471 6.109]
max.logdens= -2471.290585 fn= 61 theta= 0.221341 1.977443 range=[-1.471 6.109]
Iter=2 |grad|=0.192 |x-x.old|=0.000191(pass) |f-f.old|=0.000985 Reached numerical limit!
Number of function evaluations = 74
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
180.217287 10.907347
10.907347 15.918344
Eigenvectors of the Hessian
0.997823 -0.065953
0.065953 0.997823
Eigenvalues of the Hessian
180.938232
15.197400
StDev/Correlation matrix (scaled inverse Hessian)
0.076085 -0.203644
0.256005
Compute corrected stdev for theta[0]: negative 1.090397 positive 1.106835
Compute corrected stdev for theta[1]: negative 1.824486 positive 2.058457
max.logdens= -2471.293049 fn= 88 theta= 0.221341 1.977443 range=[-1.471 6.109]
config 0=[ 0.00 0.00] log(rel.dens)=-0.07, [3] accept, compute, 10.06s
config 1=[ -0.75 0.00] log(rel.dens)=-0.32, [1] accept, compute, 10.25s
config 2=[ 0.75 0.00] log(rel.dens)=-0.38, [0] accept, compute, 10.35s
config 3=[ 0.00 -0.75] log(rel.dens)=-0.07, [2] accept, compute, 10.63s
config 4=[ 0.00 0.75] log(rel.dens)=-0.07, [3] accept, compute, 11.08s
config 5=[ -0.75 -0.75] log(rel.dens)=-0.48, [0] accept, compute, 10.86s
config 6=[ 0.75 -0.75] log(rel.dens)=-0.38, [2] accept, compute, 10.68s
config 7=[ -0.75 0.75] log(rel.dens)=-0.34, [1] accept, compute, 11.23s
config 8=[ 0.75 0.75] log(rel.dens)=-0.32, [3] accept, compute, 10.19s
config 9=[ 0.00 -1.50] log(rel.dens)=-0.35, [0] accept, compute, 10.18s
config 10=[ -1.50 0.00] log(rel.dens)=-0.94, [2] accept, compute, 10.28s
config 11=[ 1.50 0.00] log(rel.dens)=-0.93, [1] accept, compute, 10.36s
config 12=[ 0.00 1.50] log(rel.dens)=-0.31, [3] accept, compute, 10.46s
config 13=[ -0.75 1.50] log(rel.dens)=-0.79, [0] accept, compute, 10.48s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.55, [2] accept, compute, 10.61s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.47, [1] accept, compute, 10.60s
config 16=[ -1.50 -0.75] log(rel.dens)=-1.05, [0] accept, compute, 10.09s
config 17=[ 0.75 1.50] log(rel.dens)=-0.46, [3] accept, compute, 10.26s
config 18=[ 1.50 -0.75] log(rel.dens)=-1.08, [2] accept, compute, 10.08s
config 19=[ -1.50 0.75] log(rel.dens)=-1.25, [1] accept, compute, 9.99s
config 20=[ -1.50 -1.50] log(rel.dens)=-1.12, [3] accept, compute, 10.36s
config 21=[ 1.50 0.75] log(rel.dens)=-0.94, [0] accept, compute, 10.58s
config 22=[ 1.50 1.50] log(rel.dens)=-1.12, [2] accept, compute, 10.26s
config 23=[ 1.50 -1.50] log(rel.dens)=-1.24, [1] accept, compute, 10.36s
config 24=[ -1.50 1.50] log(rel.dens)=-1.52, [3] accept, compute, 10.14s
config 25=[ 0.00 -2.25] log(rel.dens)=-0.68, [0] accept, compute, 10.12s
config 26=[ 2.25 0.00] log(rel.dens)=-2.15, [2] accept, compute, 10.13s
config 27=[ -2.25 0.00] log(rel.dens)=-2.14, [1] accept, compute, 10.16s
config 28=[ 0.00 2.25] log(rel.dens)=-0.72, [3] accept, compute, 9.87s
config 29=[ 2.25 0.75] log(rel.dens)=-2.05, [0] accept, compute, 9.91s
config 30=[ -0.75 -2.25] log(rel.dens)=-0.87, [2] accept, compute, 10.04s
config 31=[ 0.75 -2.25] log(rel.dens)=-0.92, [1] accept, compute, 10.09s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.10, [3] accept, compute, 10.81s
config 33=[ 2.25 -0.75] log(rel.dens)=-2.18, [0] accept, compute, 10.83s
config 34=[ -0.75 2.25] log(rel.dens)=-0.89, [2] accept, compute, 10.98s
config 35=[ -2.25 0.75] log(rel.dens)=-2.35, [1] accept, compute, 10.99s
config 36=[ 0.75 2.25] log(rel.dens)=-0.63, [3] accept, compute, 10.41s
config 37=[ -2.25 -1.50] log(rel.dens)=-2.26, [0] accept, compute, 10.57s
config 38=[ -1.50 -2.25] log(rel.dens)=-1.74, [1] accept, compute, 10.41s
config 39=[ 2.25 -1.50] log(rel.dens)=-2.34, [2] accept, compute, 10.84s
config 40=[ 2.25 1.50] log(rel.dens)=-2.34, [3] accept, compute, 9.90s
config 41=[ -1.50 2.25] log(rel.dens)=-1.77, [0] accept, compute, 10.05s
config 42=[ 1.50 -2.25] log(rel.dens)=-1.59, [1] accept, compute, 10.08s
config 43=[ -2.25 1.50] log(rel.dens)=-2.70, [2] accept, compute, 10.04s
config 44=[ 1.50 2.25] log(rel.dens)=-1.28, [3] accept, compute, 10.18s
config 45=[ 0.00 3.00] log(rel.dens)=-1.07, [0] accept, compute, 10.08s
config 46=[ 0.00 -3.00] log(rel.dens)=-1.27, [2] accept, compute, 10.11s
config 47=[ 3.00 0.00] log(rel.dens)=-3.59, [1] accept, compute, 10.25s
config 48=[ -3.00 0.00] log(rel.dens)=-3.86, [3] accept, compute, 10.43s
config 49=[ -0.75 -3.00] log(rel.dens)=-1.48, [0] accept, compute, 10.30s
config 50=[ 3.00 0.75] log(rel.dens)=-3.59, [1] accept, compute, 10.15s
config 51=[ -3.00 0.75] log(rel.dens)=-4.12, [2] accept, compute, 10.48s
config 52=[ -0.75 3.00] log(rel.dens)=-1.31, [3] accept, compute, 10.24s
config 53=[ 0.75 -3.00] log(rel.dens)=-1.67, [0] accept, compute, 10.06s
config 54=[ 0.75 3.00] log(rel.dens)=-0.92, [1] accept, compute, 10.14s
config 55=[ 3.00 -0.75] log(rel.dens)=-3.69, [2] accept, compute, 10.06s
config 56=[ -3.00 -0.75] log(rel.dens)=-3.76, [3] accept, compute, 10.10s
config 57=[ 2.25 2.25] log(rel.dens)=-2.26, [0] accept, compute, 10.33s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.65, [1] accept, compute, 10.14s
config 59=[ -2.25 -2.25] log(rel.dens)=-2.63, [2] accept, compute, 10.23s
config 60=[ -2.25 2.25] log(rel.dens)=-3.32, [3] accept, compute, 10.08s
config 61=[ -1.50 3.00] log(rel.dens)=-2.26, [0] accept, compute, 10.28s
config 62=[ -3.00 -1.50] log(rel.dens)=-3.88, [1] accept, compute, 10.42s
config 63=[ 1.50 -3.00] log(rel.dens)=-2.10, [2] accept, compute, 10.28s
config 64=[ 3.00 1.50] log(rel.dens)=-3.65, [3] accept, compute, 10.98s
config 65=[ 1.50 3.00] log(rel.dens)=-1.46, [0] accept, compute, 10.96s
config 66=[ -3.00 1.50] log(rel.dens)=-4.69, [1] accept, compute, 10.75s
config 67=[ -1.50 -3.00] log(rel.dens)=-2.14, [2] accept, compute, 11.15s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.99, [3] accept, compute, 10.33s
config 69=[ -2.25 -3.00] log(rel.dens)=-3.25, [0] accept, compute, 10.44s
config 70=[ 2.25 -3.00] log(rel.dens)=-3.12, [1] accept, compute, 10.25s
config 71=[ 0.00 -3.75] log(rel.dens)=-2.29, [2] accept, compute, 10.16s
config 72=[ -3.00 2.25] log(rel.dens)=-5.12, [3] accept, compute, 9.99s
config 73=[ 3.00 -2.25] log(rel.dens)=-4.11, [0] accept, compute, 10.08s
config 74=[ 3.00 2.25] log(rel.dens)=-3.75, [1] accept, compute, 10.05s
config 75=[ -3.00 -2.25] log(rel.dens)=-4.22, [2] accept, compute, 10.04s
config 76=[ 2.25 3.00] log(rel.dens)=-2.47, [3] accept, compute, 10.00s
config 77=[ -3.75 0.00] log(rel.dens)=-6.11, reject, 0.33s
config 78=[ 0.00 3.75] log(rel.dens)=-1.29, [0] accept, compute, 10.05s
config 79=[ -2.25 3.00] log(rel.dens)=-3.75, [1] accept, compute, 9.97s
config 80=[ 3.75 0.00] log(rel.dens)=-5.55, [2] accept, compute, 10.11s
config 81=[ -0.75 3.75] log(rel.dens)=-1.80, [3] accept, compute, 9.98s
config 82=[ 0.75 -3.75] log(rel.dens)=-2.26, [0] accept, compute, 10.03s
config 83=[ 3.75 0.75] log(rel.dens)=-5.54, [1] accept, compute, 9.98s
config 84=[ 3.75 -0.75] log(rel.dens)=-5.60, [2] accept, compute, 10.04s
config 85=[ 0.75 3.75] log(rel.dens)=-1.50, [3] accept, compute, 9.89s
config 86=[ -0.75 -3.75] log(rel.dens)=-2.55, [0] accept, compute, 9.96s
config 87=[ -1.50 3.75] log(rel.dens)=-2.85, [1] accept, compute, 9.94s
config 88=[ 3.75 1.50] log(rel.dens)=-5.65, [2] accept, compute, 10.02s
config 89=[ -1.50 -3.75] log(rel.dens)=-3.04, [3] accept, compute, 10.36s
config 90=[ 1.50 -3.75] log(rel.dens)=-2.81, [0] accept, compute, 10.26s
config 91=[ 1.50 3.75] log(rel.dens)=-1.75, [1] accept, compute, 10.44s
config 92=[ 3.75 -1.50] log(rel.dens)=-5.86, [2] accept, compute, 10.34s
config 93=[ -3.00 -3.00] log(rel.dens)=-5.05, [3] accept, compute, 10.16s
config 94=[ 3.00 -3.00] log(rel.dens)=-4.69, [0] accept, compute, 10.09s
config 95=[ 3.00 3.00] log(rel.dens)=-4.12, [1] accept, compute, 10.14s
config 96=[ -3.00 3.00] log(rel.dens)=-5.80, [2] accept, compute, 10.31s
config 97=[ 2.25 -3.75] log(rel.dens)=-3.74, [3] accept, compute, 10.10s
config 98=[ 2.25 3.75] log(rel.dens)=-2.70, [0] accept, compute, 10.10s
config 99=[ -2.25 -3.75] log(rel.dens)=-4.18, [1] accept, compute, 10.16s
config 100=[ 3.75 -2.25] log(rel.dens)=-5.95, [2] accept, compute, 10.18s
config 101=[ 3.75 2.25] log(rel.dens)=-5.65, [3] accept, compute, 10.01s
config 102=[ -2.25 3.75] log(rel.dens)=-4.40, [0] accept, compute, 9.89s
config 103=[ 4.50 0.00] log(rel.dens)=-7.96, reject, 0.21s
config 104=[ 4.50 -0.75] log(rel.dens)=-7.90, reject, 0.34s
config 105=[ 0.00 4.50] log(rel.dens)=-1.76, [1] accept, compute, 9.98s
config 106=[ 0.00 -4.50] log(rel.dens)=-3.23, [2] accept, compute, 10.07s
config 107=[ 0.75 -4.50] log(rel.dens)=-3.31, [3] accept, compute, 10.23s
config 108=[ -0.75 4.50] log(rel.dens)=-2.37, [0] accept, compute, 10.04s
config 109=[ 0.75 4.50] log(rel.dens)=-1.73, [1] accept, compute, 10.04s
config 110=[ -0.75 -4.50] log(rel.dens)=-3.59, [2] accept, compute, 10.00s
config 111=[ -1.50 4.50] log(rel.dens)=-3.47, [3] accept, compute, 10.00s
config 112=[ 1.50 4.50] log(rel.dens)=-2.13, [1] accept, compute, 9.95s
config 113=[ -1.50 -4.50] log(rel.dens)=-4.28, [0] accept, compute, 10.12s
config 114=[ 3.75 -3.00] log(rel.dens)=-6.24, reject, 0.28s
config 115=[ -3.00 3.75] log(rel.dens)=-6.55, reject, 0.27s
config 116=[ 1.50 -4.50] log(rel.dens)=-3.76, [2] accept, compute, 10.07s
config 117=[ 3.00 3.75] log(rel.dens)=-4.11, [0] accept, compute, 10.47s
config 118=[ -3.00 -3.75] log(rel.dens)=-5.76, [1] accept, compute, 10.54s
config 119=[ 3.75 3.00] log(rel.dens)=-5.80, [3] accept, compute, 10.64s
config 120=[ 3.00 -3.75] log(rel.dens)=-5.23, [2] accept, compute, 10.68s
config 121=[ -2.25 -4.50] log(rel.dens)=-5.49, [1] accept, compute, 10.99s
config 122=[ 2.25 -4.50] log(rel.dens)=-4.58, [0] accept, compute, 11.20s
config 123=[ -2.25 4.50] log(rel.dens)=-5.14, [3] accept, compute, 11.94s
config 124=[ 2.25 4.50] log(rel.dens)=-2.97, [2] accept, compute, 12.06s
config 125=[ 3.75 3.75] log(rel.dens)=-6.14, reject, 0.32s
config 126=[ 0.00 5.25] log(rel.dens)=-2.27, [1] accept, compute, 12.77s
config 127=[ 0.00 -5.25] log(rel.dens)=-4.69, [0] accept, compute, 12.66s
config 128=[ -0.75 -5.25] log(rel.dens)=-5.11, [3] accept, compute, 12.28s
config 129=[ -3.00 -4.50] log(rel.dens)=-7.04, reject, 0.46s
config 130=[ -0.75 5.25] log(rel.dens)=-2.95, [2] accept, compute, 12.18s
config 131=[ 0.75 -5.25] log(rel.dens)=-4.68, [1] accept, compute, 11.90s
config 132=[ 0.75 5.25] log(rel.dens)=-2.11, [0] accept, compute, 11.97s
config 133=[ 3.00 -4.50] log(rel.dens)=-5.76, [3] accept, compute, 11.60s
config 134=[ 3.00 4.50] log(rel.dens)=-4.31, [2] accept, compute, 11.61s
config 135=[ -1.50 5.25] log(rel.dens)=-4.14, [0] accept, compute, 10.32s
config 136=[ 1.50 5.25] log(rel.dens)=-2.44, [1] accept, compute, 10.45s
config 137=[ -1.50 -5.25] log(rel.dens)=-5.91, [3] accept, compute, 10.33s
config 138=[ -2.25 -5.25] log(rel.dens)=-7.18, reject, 0.23s
config 139=[ 1.50 -5.25] log(rel.dens)=-5.02, [2] accept, compute, 10.49s
config 140=[ 0.00 -6.00] log(rel.dens)=-6.87, reject, 0.25s
config 141=[ -2.25 5.25] log(rel.dens)=-5.88, [1] accept, compute, 10.05s
config 142=[ 2.25 5.25] log(rel.dens)=-3.26, [0] accept, compute, 10.13s
config 143=[ 3.00 -5.25] log(rel.dens)=-6.73, reject, 0.30s
config 144=[ 2.25 -5.25] log(rel.dens)=-5.70, [3] accept, compute, 9.95s
config 145=[ 0.00 6.00] log(rel.dens)=-2.79, [2] accept, compute, 10.08s
config 146=[ 3.00 5.25] log(rel.dens)=-4.55, [1] accept, compute, 9.88s
config 147=[ 0.75 6.00] log(rel.dens)=-2.55, [0] accept, compute, 10.09s
config 148=[ -2.25 6.00] log(rel.dens)=-6.67, reject, 0.31s
config 149=[ -0.75 6.00] log(rel.dens)=-3.56, [3] accept, compute, 10.04s
config 150=[ 1.50 6.00] log(rel.dens)=-3.02, [2] accept, compute, 10.04s
config 151=[ -1.50 6.00] log(rel.dens)=-4.84, [1] accept, compute, 10.07s
config 152=[ 2.25 6.00] log(rel.dens)=-3.56, [0] accept, compute, 10.28s
config 153=[ 3.00 6.00] log(rel.dens)=-4.77, [3] accept, compute, 10.31s
config 154=[ 0.00 6.75] log(rel.dens)=-3.60, [2] accept, compute, 10.06s
config 155=[ -0.75 6.75] log(rel.dens)=-4.21, [1] accept, compute, 9.96s
config 156=[ 0.75 6.75] log(rel.dens)=-3.26, [0] accept, compute, 10.35s
config 157=[ -1.50 6.75] log(rel.dens)=-5.55, [3] accept, compute, 10.05s
config 158=[ 1.50 6.75] log(rel.dens)=-3.39, [2] accept, compute, 10.03s
config 159=[ 2.25 6.75] log(rel.dens)=-3.84, [1] accept, compute, 10.71s
config 160=[ 3.00 6.75] log(rel.dens)=-4.98, [0] accept, compute, 10.67s
config 161=[ 0.00 7.50] log(rel.dens)=-4.05, [3] accept, compute, 10.57s
config 162=[ -1.50 7.50] log(rel.dens)=-6.52, reject, 0.25s
config 163=[ -0.75 7.50] log(rel.dens)=-4.78, [2] accept, compute, 10.75s
config 164=[ 0.75 7.50] log(rel.dens)=-3.70, [1] accept, compute, 10.37s
config 165=[ 1.50 7.50] log(rel.dens)=-3.78, [0] accept, compute, 10.35s
config 166=[ 2.25 7.50] log(rel.dens)=-4.11, [3] accept, compute, 10.41s
config 167=[ 3.00 7.50] log(rel.dens)=-5.18, [2] accept, compute, 10.46s
config 168=[ 0.00 8.25] log(rel.dens)=-4.43, [1] accept, compute, 10.38s
config 169=[ 0.75 8.25] log(rel.dens)=-3.92, [0] accept, compute, 10.42s
config 170=[ -0.75 8.25] log(rel.dens)=-5.38, [3] accept, compute, 10.50s
config 171=[ 1.50 8.25] log(rel.dens)=-4.11, [2] accept, compute, 10.57s
config 172=[ 2.25 8.25] log(rel.dens)=-4.35, [1] accept, compute, 10.20s
config 173=[ 3.00 8.25] log(rel.dens)=-5.35, [0] accept, compute, 10.17s
config 174=[ 0.00 9.00] log(rel.dens)=-4.88, [3] accept, compute, 10.21s
config 175=[ 0.75 9.00] log(rel.dens)=-4.32, [2] accept, compute, 10.20s
config 176=[ -0.75 9.00] log(rel.dens)=-5.97, [1] accept, compute, 10.19s
config 177=[ 1.50 9.00] log(rel.dens)=-4.42, [0] accept, compute, 10.00s
config 178=[ -0.75 9.75] log(rel.dens)=-6.53, reject, 0.29s
config 179=[ 2.25 9.00] log(rel.dens)=-4.57, [3] accept, compute, 10.16s
config 180=[ 3.00 9.00] log(rel.dens)=-5.48, [2] accept, compute, 10.03s
config 181=[ 0.00 9.75] log(rel.dens)=-5.34, [1] accept, compute, 10.10s
config 182=[ 0.75 9.75] log(rel.dens)=-4.84, [0] accept, compute, 10.28s
config 183=[ 1.50 9.75] log(rel.dens)=-4.50, [3] accept, compute, 10.26s
config 184=[ 2.25 9.75] log(rel.dens)=-4.83, [2] accept, compute, 10.26s
config 185=[ 3.00 9.75] log(rel.dens)=-5.58, [1] accept, compute, 10.15s
config 186=[ 0.00 10.50] log(rel.dens)=-5.83, [0] accept, compute, 10.05s
config 187=[ 0.75 10.50] log(rel.dens)=-5.02, [3] accept, compute, 10.10s
config 188=[ 1.50 10.50] log(rel.dens)=-4.74, [2] accept, compute, 10.05s
config 189=[ 0.00 11.25] log(rel.dens)=-6.25, reject, 0.20s
config 190=[ 2.25 10.50] log(rel.dens)=-4.98, [1] accept, compute, 8.53s
config 191=[ 3.00 10.50] log(rel.dens)=-5.64, [0] accept, compute, 8.01s
config 192=[ 0.75 11.25] log(rel.dens)=-5.34, [2] accept, compute, 7.79s
Combine the densities with relative weights:
config 0/179=[ 0.00 0.00] weight = 0.994 adjusted weight = 0.037 neff = 807.52
config 1/179=[ -0.75 0.00] weight = 0.778 adjusted weight = 0.029 neff = 831.68
config 2/179=[ 0.75 0.00] weight = 0.735 adjusted weight = 0.027 neff = 783.71
config 3/179=[ 0.00 -0.75] weight = 1.000 adjusted weight = 0.037 neff = 806.60
config 4/179=[ 0.00 0.75] weight = 0.996 adjusted weight = 0.037 neff = 809.05
config 5/179=[ -0.75 -0.75] weight = 0.660 adjusted weight = 0.025 neff = 830.78
config 6/179=[ 0.75 -0.75] weight = 0.736 adjusted weight = 0.027 neff = 783.04
config 7/179=[ -0.75 0.75] weight = 0.764 adjusted weight = 0.028 neff = 833.41
config 8/179=[ 0.75 0.75] weight = 0.775 adjusted weight = 0.029 neff = 785.00
config 9/179=[ 0.00 -1.50] weight = 0.755 adjusted weight = 0.028 neff = 806.81
config 10/179=[ -1.50 0.00] weight = 0.420 adjusted weight = 0.016 neff = 855.93
config 11/179=[ 1.50 0.00] weight = 0.422 adjusted weight = 0.016 neff = 759.94
config 12/179=[ 0.00 1.50] weight = 0.784 adjusted weight = 0.029 neff = 811.44
config 13/179=[ -0.75 1.50] weight = 0.487 adjusted weight = 0.018 neff = 836.20
config 14/179=[ 0.75 -1.50] weight = 0.620 adjusted weight = 0.023 neff = 783.38
config 15/179=[ -0.75 -1.50] weight = 0.667 adjusted weight = 0.025 neff = 830.35
config 16/179=[ -1.50 -0.75] weight = 0.373 adjusted weight = 0.014 neff = 854.79
config 17/179=[ 0.75 1.50] weight = 0.677 adjusted weight = 0.025 neff = 787.11
config 18/179=[ 1.50 -0.75] weight = 0.363 adjusted weight = 0.013 neff = 759.72
config 19/179=[ -1.50 0.75] weight = 0.307 adjusted weight = 0.011 neff = 858.19
config 20/179=[ -1.50 -1.50] weight = 0.348 adjusted weight = 0.013 neff = 854.22
config 21/179=[ 1.50 0.75] weight = 0.418 adjusted weight = 0.016 neff = 761.11
config 22/179=[ 1.50 1.50] weight = 0.349 adjusted weight = 0.013 neff = 763.13
config 23/179=[ 1.50 -1.50] weight = 0.311 adjusted weight = 0.012 neff = 760.34
config 24/179=[ -1.50 1.50] weight = 0.235 adjusted weight = 0.009 neff = 860.86
config 25/179=[ 0.00 -2.25] weight = 0.545 adjusted weight = 0.020 neff = 807.94
config 26/179=[ 2.25 0.00] weight = 0.125 adjusted weight = 0.005 neff = 736.80
config 27/179=[ -2.25 0.00] weight = 0.126 adjusted weight = 0.005 neff = 880.51
config 28/179=[ 0.00 2.25] weight = 0.521 adjusted weight = 0.019 neff = 814.52
config 29/179=[ 2.25 0.75] weight = 0.138 adjusted weight = 0.005 neff = 737.60
config 30/179=[ -0.75 -2.25] weight = 0.449 adjusted weight = 0.017 neff = 831.25
config 31/179=[ 0.75 -2.25] weight = 0.426 adjusted weight = 0.016 neff = 784.91
config 32/179=[ -2.25 -0.75] weight = 0.131 adjusted weight = 0.005 neff = 878.98
config 33/179=[ 2.25 -0.75] weight = 0.121 adjusted weight = 0.004 neff = 736.68
config 34/179=[ -0.75 2.25] weight = 0.441 adjusted weight = 0.016 neff = 838.96
config 35/179=[ -2.25 0.75] weight = 0.102 adjusted weight = 0.004 neff = 882.75
config 36/179=[ 0.75 2.25] weight = 0.571 adjusted weight = 0.021 neff = 789.76
config 37/179=[ -2.25 -1.50] weight = 0.112 adjusted weight = 0.004 neff = 878.31
config 38/179=[ -1.50 -2.25] weight = 0.187 adjusted weight = 0.007 neff = 855.12
config 39/179=[ 2.25 -1.50] weight = 0.103 adjusted weight = 0.004 neff = 737.62
config 40/179=[ 2.25 1.50] weight = 0.103 adjusted weight = 0.004 neff = 739.58
config 41/179=[ -1.50 2.25] weight = 0.183 adjusted weight = 0.007 neff = 863.89
config 42/179=[ 1.50 -2.25] weight = 0.219 adjusted weight = 0.008 neff = 762.19
config 43/179=[ -2.25 1.50] weight = 0.072 adjusted weight = 0.003 neff = 885.62
config 44/179=[ 1.50 2.25] weight = 0.297 adjusted weight = 0.011 neff = 765.63
config 45/179=[ 0.00 3.00] weight = 0.365 adjusted weight = 0.014 neff = 817.91
config 46/179=[ 0.00 -3.00] weight = 0.301 adjusted weight = 0.011 neff = 810.41
config 47/179=[ 3.00 0.00] weight = 0.029 adjusted weight = 0.001 neff = 713.74
config 48/179=[ -3.00 0.00] weight = 0.023 adjusted weight = 0.001 neff = 905.25
config 49/179=[ -0.75 -3.00] weight = 0.243 adjusted weight = 0.009 neff = 833.38
config 50/179=[ 3.00 0.75] weight = 0.029 adjusted weight = 0.001 neff = 714.44
config 51/179=[ -3.00 0.75] weight = 0.017 adjusted weight = 0.001 neff = 907.68
config 52/179=[ -0.75 3.00] weight = 0.289 adjusted weight = 0.011 neff = 842.51
config 53/179=[ 0.75 -3.00] weight = 0.202 adjusted weight = 0.008 neff = 787.99
config 54/179=[ 0.75 3.00] weight = 0.426 adjusted weight = 0.016 neff = 793.00
config 55/179=[ 3.00 -0.75] weight = 0.027 adjusted weight = 0.001 neff = 713.99
config 56/179=[ -3.00 -0.75] weight = 0.025 adjusted weight = 0.001 neff = 903.51
config 57/179=[ 2.25 2.25] weight = 0.111 adjusted weight = 0.004 neff = 741.63
config 58/179=[ 2.25 -2.25] weight = 0.075 adjusted weight = 0.003 neff = 739.80
config 59/179=[ -2.25 -2.25] weight = 0.077 adjusted weight = 0.003 neff = 878.63
config 60/179=[ -2.25 2.25] weight = 0.039 adjusted weight = 0.001 neff = 889.19
config 61/179=[ -1.50 3.00] weight = 0.111 adjusted weight = 0.004 neff = 867.59
config 62/179=[ -3.00 -1.50] weight = 0.022 adjusted weight = 0.001 neff = 902.59
config 63/179=[ 1.50 -3.00] weight = 0.131 adjusted weight = 0.005 neff = 765.39
config 64/179=[ 3.00 1.50] weight = 0.028 adjusted weight = 0.001 neff = 715.91
config 65/179=[ 1.50 3.00] weight = 0.249 adjusted weight = 0.009 neff = 768.61
config 66/179=[ -3.00 1.50] weight = 0.010 adjusted weight = 0.000 neff = 910.90
config 67/179=[ -1.50 -3.00] weight = 0.126 adjusted weight = 0.005 neff = 856.60
config 68/179=[ 3.00 -1.50] weight = 0.020 adjusted weight = 0.001 neff = 715.47
config 69/179=[ -2.25 -3.00] weight = 0.041 adjusted weight = 0.002 neff = 880.07
config 70/179=[ 2.25 -3.00] weight = 0.047 adjusted weight = 0.002 neff = 743.38
config 71/179=[ 0.00 -3.75] weight = 0.108 adjusted weight = 0.004 neff = 814.59
config 72/179=[ -3.00 2.25] weight = 0.006 adjusted weight = 0.000 neff = 914.27
config 73/179=[ 3.00 -2.25] weight = 0.018 adjusted weight = 0.001 neff = 717.79
config 74/179=[ 3.00 2.25] weight = 0.025 adjusted weight = 0.001 neff = 718.03
config 75/179=[ -3.00 -2.25] weight = 0.016 adjusted weight = 0.001 neff = 902.60
config 76/179=[ 2.25 3.00] weight = 0.091 adjusted weight = 0.003 neff = 744.53
config 77/179=[ 0.00 3.75] weight = 0.294 adjusted weight = 0.011 neff = 821.46
config 78/179=[ -2.25 3.00] weight = 0.025 adjusted weight = 0.001 neff = 892.84
config 79/179=[ 3.75 0.00] weight = 0.004 adjusted weight = 0.000 neff = 691.21
config 80/179=[ -0.75 3.75] weight = 0.177 adjusted weight = 0.007 neff = 846.46
config 81/179=[ 0.75 -3.75] weight = 0.112 adjusted weight = 0.004 neff = 792.07
config 82/179=[ 3.75 0.75] weight = 0.004 adjusted weight = 0.000 neff = 691.64
config 83/179=[ 3.75 -0.75] weight = 0.004 adjusted weight = 0.000 neff = 691.69
config 84/179=[ 0.75 3.75] weight = 0.239 adjusted weight = 0.009 neff = 796.96
config 85/179=[ -0.75 -3.75] weight = 0.084 adjusted weight = 0.003 neff = 837.15
config 86/179=[ -1.50 3.75] weight = 0.062 adjusted weight = 0.002 neff = 871.68
config 87/179=[ 3.75 1.50] weight = 0.004 adjusted weight = 0.000 neff = 692.97
config 88/179=[ -1.50 -3.75] weight = 0.051 adjusted weight = 0.002 neff = 859.75
config 89/179=[ 1.50 -3.75] weight = 0.065 adjusted weight = 0.002 neff = 770.12
config 90/179=[ 1.50 3.75] weight = 0.186 adjusted weight = 0.007 neff = 772.14
config 91/179=[ 3.75 -1.50] weight = 0.003 adjusted weight = 0.000 neff = 693.48
config 92/179=[ -3.00 -3.00] weight = 0.007 adjusted weight = 0.000 neff = 904.01
config 93/179=[ 3.00 -3.00] weight = 0.010 adjusted weight = 0.000 neff = 721.98
config 94/179=[ 3.00 3.00] weight = 0.017 adjusted weight = 0.001 neff = 721.05
config 95/179=[ -3.00 3.00] weight = 0.003 adjusted weight = 0.000 neff = 918.24
config 96/179=[ 2.25 -3.75] weight = 0.025 adjusted weight = 0.001 neff = 748.52
config 97/179=[ 2.25 3.75] weight = 0.072 adjusted weight = 0.003 neff = 747.89
config 98/179=[ -2.25 -3.75] weight = 0.016 adjusted weight = 0.001 neff = 882.85
config 99/179=[ 3.75 -2.25] weight = 0.003 adjusted weight = 0.000 neff = 696.17
config 100/179=[ 3.75 2.25] weight = 0.004 adjusted weight = 0.000 neff = 694.80
config 101/179=[ -2.25 3.75] weight = 0.013 adjusted weight = 0.000 neff = 897.02
config 102/179=[ 0.00 4.50] weight = 0.184 adjusted weight = 0.007 neff = 825.63
config 103/179=[ 0.00 -4.50] weight = 0.043 adjusted weight = 0.002 neff = 819.93
config 104/179=[ 0.75 -4.50] weight = 0.039 adjusted weight = 0.001 neff = 798.12
config 105/179=[ -0.75 4.50] weight = 0.100 adjusted weight = 0.004 neff = 850.78
config 106/179=[ 0.75 4.50] weight = 0.190 adjusted weight = 0.007 neff = 800.79
config 107/179=[ -0.75 -4.50] weight = 0.030 adjusted weight = 0.001 neff = 842.11
config 108/179=[ -1.50 4.50] weight = 0.033 adjusted weight = 0.001 neff = 876.07
config 109/179=[ 1.50 4.50] weight = 0.127 adjusted weight = 0.005 neff = 776.11
config 110/179=[ -1.50 -4.50] weight = 0.015 adjusted weight = 0.001 neff = 864.46
config 111/179=[ 1.50 -4.50] weight = 0.025 adjusted weight = 0.001 neff = 776.61
config 112/179=[ 3.00 3.75] weight = 0.018 adjusted weight = 0.001 neff = 723.96
config 113/179=[ -3.00 -3.75] weight = 0.003 adjusted weight = 0.000 neff = 906.13
config 114/179=[ 3.75 3.00] weight = 0.003 adjusted weight = 0.000 neff = 697.36
config 115/179=[ 3.00 -3.75] weight = 0.006 adjusted weight = 0.000 neff = 727.55
config 116/179=[ -2.25 -4.50] weight = 0.004 adjusted weight = 0.000 neff = 887.18
config 117/179=[ 2.25 -4.50] weight = 0.011 adjusted weight = 0.000 neff = 755.47
config 118/179=[ -2.25 4.50] weight = 0.006 adjusted weight = 0.000 neff = 901.56
config 119/179=[ 2.25 4.50] weight = 0.055 adjusted weight = 0.002 neff = 751.65
config 120/179=[ 0.00 5.25] weight = 0.111 adjusted weight = 0.004 neff = 830.10
config 121/179=[ 0.00 -5.25] weight = 0.010 adjusted weight = 0.000 neff = 827.42
config 122/179=[ -0.75 -5.25] weight = 0.006 adjusted weight = 0.000 neff = 849.05
config 123/179=[ -0.75 5.25] weight = 0.056 adjusted weight = 0.002 neff = 855.34
config 124/179=[ 0.75 -5.25] weight = 0.010 adjusted weight = 0.000 neff = 806.11
config 125/179=[ 0.75 5.25] weight = 0.130 adjusted weight = 0.005 neff = 805.07
config 126/179=[ 3.00 -4.50] weight = 0.003 adjusted weight = 0.000 neff = 734.70
config 127/179=[ 3.00 4.50] weight = 0.014 adjusted weight = 0.001 neff = 727.56
config 128/179=[ -1.50 5.25] weight = 0.017 adjusted weight = 0.001 neff = 880.74
config 129/179=[ 1.50 5.25] weight = 0.093 adjusted weight = 0.003 neff = 780.28
config 130/179=[ -1.50 -5.25] weight = 0.003 adjusted weight = 0.000 neff = 870.95
config 131/179=[ 1.50 -5.25] weight = 0.007 adjusted weight = 0.000 neff = 785.12
config 132/179=[ -2.25 5.25] weight = 0.003 adjusted weight = 0.000 neff = 906.29
config 133/179=[ 2.25 5.25] weight = 0.041 adjusted weight = 0.002 neff = 755.75
config 134/179=[ 2.25 -5.25] weight = 0.004 adjusted weight = 0.000 neff = 764.48
config 135/179=[ 0.00 6.00] weight = 0.065 adjusted weight = 0.002 neff = 834.83
config 136/179=[ 3.00 5.25] weight = 0.011 adjusted weight = 0.000 neff = 731.53
config 137/179=[ 0.75 6.00] weight = 0.083 adjusted weight = 0.003 neff = 809.69
config 138/179=[ -0.75 6.00] weight = 0.030 adjusted weight = 0.001 neff = 860.16
config 139/179=[ 1.50 6.00] weight = 0.052 adjusted weight = 0.002 neff = 785.07
config 140/179=[ -1.50 6.00] weight = 0.008 adjusted weight = 0.000 neff = 885.65
config 141/179=[ 2.25 6.00] weight = 0.031 adjusted weight = 0.001 neff = 760.14
config 142/179=[ 3.00 6.00] weight = 0.009 adjusted weight = 0.000 neff = 735.78
config 143/179=[ 0.00 6.75] weight = 0.029 adjusted weight = 0.001 neff = 840.11
config 144/179=[ -0.75 6.75] weight = 0.016 adjusted weight = 0.001 neff = 865.22
config 145/179=[ 0.75 6.75] weight = 0.041 adjusted weight = 0.002 neff = 814.86
config 146/179=[ -1.50 6.75] weight = 0.004 adjusted weight = 0.000 neff = 890.74
config 147/179=[ 1.50 6.75] weight = 0.036 adjusted weight = 0.001 neff = 789.80
config 148/179=[ 2.25 6.75] weight = 0.023 adjusted weight = 0.001 neff = 764.75
config 149/179=[ 3.00 6.75] weight = 0.007 adjusted weight = 0.000 neff = 740.28
config 150/179=[ 0.00 7.50] weight = 0.019 adjusted weight = 0.001 neff = 845.11
config 151/179=[ -0.75 7.50] weight = 0.009 adjusted weight = 0.000 neff = 870.33
config 152/179=[ 0.75 7.50] weight = 0.027 adjusted weight = 0.001 neff = 819.88
config 153/179=[ 1.50 7.50] weight = 0.024 adjusted weight = 0.001 neff = 794.76
config 154/179=[ 2.25 7.50] weight = 0.018 adjusted weight = 0.001 neff = 769.57
config 155/179=[ 3.00 7.50] weight = 0.006 adjusted weight = 0.000 neff = 744.99
config 156/179=[ 0.00 8.25] weight = 0.013 adjusted weight = 0.000 neff = 850.20
config 157/179=[ 0.75 8.25] weight = 0.021 adjusted weight = 0.001 neff = 824.80
config 158/179=[ -0.75 8.25] weight = 0.005 adjusted weight = 0.000 neff = 875.65
config 159/179=[ 1.50 8.25] weight = 0.018 adjusted weight = 0.001 neff = 799.85
config 160/179=[ 2.25 8.25] weight = 0.014 adjusted weight = 0.001 neff = 774.55
config 161/179=[ 3.00 8.25] weight = 0.005 adjusted weight = 0.000 neff = 749.87
config 162/179=[ 0.00 9.00] weight = 0.008 adjusted weight = 0.000 neff = 855.50
config 163/179=[ 0.75 9.00] weight = 0.014 adjusted weight = 0.001 neff = 830.09
config 164/179=[ -0.75 9.00] weight = 0.003 adjusted weight = 0.000 neff = 881.07
config 165/179=[ 1.50 9.00] weight = 0.013 adjusted weight = 0.000 neff = 805.06
config 166/179=[ 2.25 9.00] weight = 0.011 adjusted weight = 0.000 neff = 779.68
config 167/179=[ 3.00 9.00] weight = 0.004 adjusted weight = 0.000 neff = 754.90
config 168/179=[ 0.00 9.75] weight = 0.005 adjusted weight = 0.000 neff = 860.95
config 169/179=[ 0.75 9.75] weight = 0.008 adjusted weight = 0.000 neff = 835.70
config 170/179=[ 1.50 9.75] weight = 0.012 adjusted weight = 0.000 neff = 810.14
config 171/179=[ 2.25 9.75] weight = 0.009 adjusted weight = 0.000 neff = 785.02
config 172/179=[ 3.00 9.75] weight = 0.004 adjusted weight = 0.000 neff = 760.06
config 173/179=[ 0.00 10.50] weight = 0.003 adjusted weight = 0.000 neff = 866.56
config 174/179=[ 0.75 10.50] weight = 0.007 adjusted weight = 0.000 neff = 840.97
config 175/179=[ 1.50 10.50] weight = 0.009 adjusted weight = 0.000 neff = 815.56
config 176/179=[ 2.25 10.50] weight = 0.007 adjusted weight = 0.000 neff = 790.37
config 177/179=[ 3.00 10.50] weight = 0.004 adjusted weight = 0.000 neff = 765.32
config 178/179=[ 0.75 11.25] weight = 0.005 adjusted weight = 0.000 neff = 846.52
Done.
Expected effective number of parameters: 807.690(35.107), eqv.#replicates: 3.769
DIC:
Mean of Deviance................. 4531.6
Deviance at Mean................. 3800.6
Effective number of parameters... 731.004
DIC.............................. 5262.61
Marginal likelihood: Integration -2472.247779 Gaussian-approx -2473.414812
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d32e4b538c/Model.ini]
Preparations : 0.093 seconds
Approx inference: 534.726 seconds [0.1|0.0|1.8|87.2|10.9]%
Output : 0.552 seconds
---------------------------------
Total : 535.371 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d324b43b30] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3664a813e]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3256b41e9]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3664a813e]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 0, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 0, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 0, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 0, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 0, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 1, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 1, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 2, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 2, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 0, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 1, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3c07755b] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3424f790f]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33831249e]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33da9af88]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33499df23] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d362088dcf] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31f964351] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3421d8b0a] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d321935f6f] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d3525e81a1] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d33a909b46] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d36bc22eb3] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/data.files/filee1d31988210a] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fe36140d610
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -1919.333081 fn= 1 theta= 4.010000 4.000000 range=[-1.608 5.076]
max.logdens= -1919.207977 fn= 2 theta= 3.990000 4.000000 range=[-1.608 5.077]
max.logdens= -1908.347683 fn= 5 theta= 3.129468 3.507887 range=[-1.603 4.984]
max.logdens= -1908.174109 fn= 6 theta= 3.119468 3.507887 range=[-1.603 4.984]
max.logdens= -1899.954854 fn= 11 theta= 2.737729 3.286437 range=[-1.604 4.947]
max.logdens= -1899.906010 fn= 13 theta= 2.737729 3.276437 range=[-1.604 4.944]
max.logdens= -1899.729032 fn= 14 theta= 2.727729 3.286437 range=[-1.604 4.948]
max.logdens= -1889.081241 fn= 16 theta= 2.365577 3.076059 range=[-1.607 4.920]
max.logdens= -1889.005446 fn= 17 theta= 2.365577 3.066059 range=[-1.607 4.917]
max.logdens= -1888.744008 fn= 19 theta= 2.355577 3.076059 range=[-1.607 4.921]
max.logdens= -1875.431408 fn= 21 theta= 2.012032 2.876199 range=[-1.615 4.903]
max.logdens= -1875.023875 fn= 22 theta= 2.002032 2.876199 range=[-1.615 4.905]
max.logdens= -1859.283551 fn= 26 theta= 1.676165 2.686333 range=[-1.633 4.901]
max.logdens= -1858.783704 fn= 27 theta= 1.666165 2.686333 range=[-1.634 4.902]
max.logdens= -1841.461208 fn= 31 theta= 1.357091 2.505960 range=[-1.660 4.913]
max.logdens= -1841.419514 fn= 32 theta= 1.357091 2.495960 range=[-1.660 4.910]
max.logdens= -1840.897930 fn= 33 theta= 1.347091 2.505960 range=[-1.660 4.915]
max.logdens= -1823.519725 fn= 36 theta= 1.053971 2.334606 range=[-1.696 4.938]
max.logdens= -1822.948367 fn= 38 theta= 1.043971 2.334606 range=[-1.697 4.940]
max.logdens= -1807.415203 fn= 41 theta= 0.766006 2.171819 range=[-1.743 4.971]
max.logdens= -1807.396475 fn= 42 theta= 0.766006 2.161819 range=[-1.744 4.968]
max.logdens= -1806.907129 fn= 44 theta= 0.756006 2.171819 range=[-1.744 4.974]
max.logdens= -1795.031543 fn= 46 theta= 0.492440 2.017172 range=[-1.801 5.007]
max.logdens= -1794.659380 fn= 48 theta= 0.482440 2.017172 range=[-1.803 5.010]
max.logdens= -1787.827214 fn= 51 theta= 0.232552 1.870257 range=[-1.871 5.049]
max.logdens= -1787.653657 fn= 53 theta= 0.222552 1.870257 range=[-1.873 5.052]
max.logdens= -1786.679596 fn= 56 theta= -0.014341 1.730688 range=[-1.949 5.103]
max.logdens= -1786.616168 fn= 59 theta= -0.004341 1.730688 range=[-1.946 5.100]
max.logdens= -1786.465173 fn= 61 theta= 0.062615 1.774191 range=[-1.923 5.084]
max.logdens= -1786.349264 fn= 62 theta= 0.052615 1.774191 range=[-1.926 5.088]
max.logdens= -1786.333673 fn= 65 theta= 0.062615 1.784191 range=[-1.922 5.086]
Iter=1 |grad|=2.72 |x-x.old|=3.2 |f-f.old|=133
max.logdens= -1786.325461 fn= 68 theta= 0.047423 1.786627 range=[-1.926 5.092]
max.logdens= -1786.324407 fn= 70 theta= 0.037423 1.786627 range=[-1.929 5.096]
max.logdens= -1786.321961 fn= 71 theta= 0.057423 1.786627 range=[-1.923 5.089]
max.logdens= -1786.293680 fn= 72 theta= 0.047423 1.796627 range=[-1.925 5.094]
max.logdens= -1786.289596 fn= 77 theta= 0.045117 1.798514 range=[-1.926 5.095]
max.logdens= -1786.286993 fn= 82 theta= 0.043506 1.799833 range=[-1.926 5.096]
max.logdens= -1786.285225 fn= 87 theta= 0.042250 1.800861 range=[-1.926 5.097]
max.logdens= -1786.283888 fn= 92 theta= 0.041235 1.801692 range=[-1.926 5.097]
max.logdens= -1786.282902 fn= 97 theta= 0.040369 1.802400 range=[-1.927 5.098]
max.logdens= -1786.281902 fn= 102 theta= 0.039547 1.803073 range=[-1.927 5.098]
max.logdens= -1786.280994 fn= 107 theta= 0.038766 1.803713 range=[-1.927 5.099]
max.logdens= -1786.280224 fn= 112 theta= 0.038024 1.804320 range=[-1.927 5.099]
max.logdens= -1786.279581 fn= 117 theta= 0.037319 1.804897 range=[-1.927 5.099]
max.logdens= -1786.279036 fn= 122 theta= 0.036649 1.805445 range=[-1.927 5.100]
max.logdens= -1786.278538 fn= 127 theta= 0.036013 1.805966 range=[-1.927 5.100]
max.logdens= -1786.278030 fn= 132 theta= 0.035408 1.806461 range=[-1.927 5.100]
max.logdens= -1786.277690 fn= 137 theta= 0.034834 1.806931 range=[-1.928 5.101]
max.logdens= -1786.277332 fn= 142 theta= 0.034289 1.807377 range=[-1.928 5.101]
max.logdens= -1786.277114 fn= 147 theta= 0.033771 1.807802 range=[-1.928 5.101]
max.logdens= -1786.276806 fn= 152 theta= 0.033278 1.808205 range=[-1.928 5.102]
max.logdens= -1786.276588 fn= 157 theta= 0.032810 1.808588 range=[-1.928 5.102]
max.logdens= -1786.276386 fn= 162 theta= 0.032366 1.808951 range=[-1.928 5.102]
Iter=2 |grad|=2.88 |x-x.old|=0.0276 |f-f.old|=0.166
max.logdens= -1785.990768 fn= 163 theta= 0.030654 1.939513 range=[-1.916 5.130]
max.logdens= -1785.981074 fn= 165 theta= 0.040654 1.939513 range=[-1.914 5.126]
max.logdens= -1785.968677 fn= 167 theta= 0.030654 1.949513 range=[-1.915 5.132]
max.logdens= -1785.617012 fn= 168 theta= 0.027951 2.161366 range=[-1.899 5.179]
max.logdens= -1785.606678 fn= 171 theta= 0.037951 2.161366 range=[-1.897 5.176]
max.logdens= -1785.596113 fn= 172 theta= 0.027951 2.171366 range=[-1.899 5.181]
max.logdens= -1785.226580 fn= 173 theta= 0.003628 4.158048 range=[-1.857 5.614]
Iter=3 |grad|=0.254 |x-x.old|=1.67 |f-f.old|=1.07
max.logdens= -1785.226262 fn= 181 theta= 0.003762 4.157947 range=[-1.857 5.614]
max.logdens= -1785.225552 fn= 186 theta= 0.003889 4.157851 range=[-1.857 5.614]
Iter=4 |grad|=0.229 |x-x.old|=0.000232(pass) |f-f.old|=0.000394 Reached numerical limit!
Number of function evaluations = 200
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
max.logdens= -1785.216160 fn= 202 theta= 0.003889 4.057851 range=[-1.857 5.598]
Mode not sufficient accurate; switch to a stupid local search strategy.
max.logdens= -1785.204125 fn= 206 theta= 0.003889 3.952851 range=[-1.857 5.580]
max.logdens= -1785.190524 fn= 214 theta= 0.003889 3.842601 range=[-1.858 5.560]
max.logdens= -1785.176802 fn= 216 theta= 0.003889 3.726838 range=[-1.858 5.538]
max.logdens= -1785.164712 fn= 222 theta= 0.003889 3.605288 range=[-1.859 5.514]
max.logdens= -1785.156801 fn= 227 theta= 0.003889 3.477659 range=[-1.860 5.488]
max.logdens= -1785.156635 fn= 231 theta= 0.003889 3.343650 range=[-1.862 5.460]
max.logdens= -1785.140617 fn= 235 theta= 0.003889 3.611669 range=[-1.859 5.516]
108.861293 1.220129
1.220129 0.345341
Eigenvectors of the Hessian
0.999937 -0.011242
0.011242 0.999937
Eigenvalues of the Hessian
108.875010
0.331623
StDev/Correlation matrix (scaled inverse Hessian)
0.097800 -0.198996
1.736401
max.logdens= -1784.383502 fn= 314 theta= -0.035153 6.886402 range=[-1.871 5.816]
Compute corrected stdev for theta[0]: negative 0.935792 positive 1.092221
Compute corrected stdev for theta[1]: negative 0.349642 positive 1.000000
config 0=[ 0.75 0.00] log(rel.dens)=-0.45, [0] accept, compute, 10.36s
config 1=[ 0.00 -0.75] log(rel.dens)=-0.59, [1] accept, compute, 10.38s
config 2=[ 0.00 0.00] log(rel.dens)=-0.00, [2] accept, compute, 10.42s
config 3=[ -0.75 0.00] log(rel.dens)=-0.39, [3] accept, compute, 10.49s
config 4=[ 0.00 0.75] log(rel.dens)=-0.34, [0] accept, compute, 9.91s
config 5=[ -0.75 0.75] log(rel.dens)=-0.51, [1] accept, compute, 9.89s
config 6=[ -0.75 -0.75] log(rel.dens)=-1.02, [2] accept, compute, 9.88s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.71, [3] accept, compute, 9.92s
config 8=[ 0.75 0.75] log(rel.dens)=-0.40, [0] accept, compute, 9.67s
config 9=[ 0.00 -1.50] log(rel.dens)=-5.84, [1] accept, compute, 10.14s
config 10=[ -1.50 0.00] log(rel.dens)=-1.34, [2] accept, compute, 10.15s
config 11=[ 1.50 0.00] log(rel.dens)=-0.95, [3] accept, compute, 10.05s
config 12=[ -0.75 -1.50] log(rel.dens)=-6.61, reject, 0.26s
config 13=[ 0.00 1.50] log(rel.dens)= 0.19, [0] accept, compute, 9.85s
config 14=[ -0.75 1.50] log(rel.dens)=-0.14, [1] accept, compute, 10.01s
config 15=[ 0.75 -1.50] log(rel.dens)=-5.56, [2] accept, compute, 9.99s
config 16=[ 0.75 1.50] log(rel.dens)= 0.21, [3] accept, compute, 10.05s
config 17=[ -1.50 -0.75] log(rel.dens)=-2.03, [0] accept, compute, 9.79s
config 18=[ 1.50 -0.75] log(rel.dens)=-1.36, [1] accept, compute, 10.01s
config 19=[ -1.50 0.75] log(rel.dens)=-1.53, [2] accept, compute, 10.01s
config 20=[ 1.50 0.75] log(rel.dens)=-1.18, [3] accept, compute, 9.94s
config 21=[ 0.00 -2.25] log(rel.dens)=-26.22, reject, 0.49s
config 22=[ 1.50 1.50] log(rel.dens)=-0.46, [0] accept, compute, 10.85s
config 23=[ -1.50 1.50] log(rel.dens)=-1.25, [2] accept, compute, 10.47s
config 24=[ 1.50 -1.50] log(rel.dens)=-5.75, [1] accept, compute, 10.71s
max.logdens= -1784.278696 fn= 343 theta= -0.040034 7.320502 range=[-1.873 5.823]
config 25=[ 2.25 0.00] log(rel.dens)=-2.32, [3] accept, compute, 10.74s
config 26=[ -2.25 0.00] log(rel.dens)=-2.95, [0] accept, compute, 10.10s
config 27=[ 0.00 2.25] log(rel.dens)= 0.83, [2] accept, compute, 10.16s
config 28=[ 2.25 0.75] log(rel.dens)=-2.31, [1] accept, compute, 10.11s
config 29=[ -2.25 -0.75] log(rel.dens)=-3.67, [3] accept, compute, 10.02s
config 30=[ 2.25 -0.75] log(rel.dens)=-2.49, [0] accept, compute, 10.00s
config 31=[ 2.25 -1.50] log(rel.dens)=-6.38, reject, 0.28s
config 32=[ -0.75 2.25] log(rel.dens)= 0.13, [2] accept, compute, 10.13s
config 33=[ -2.25 0.75] log(rel.dens)=-3.19, [1] accept, compute, 9.98s
config 34=[ 0.75 2.25] log(rel.dens)= 0.80, [3] accept, compute, 10.13s
config 35=[ 2.25 1.50] log(rel.dens)=-1.67, [0] accept, compute, 10.20s
config 36=[ -2.25 1.50] log(rel.dens)=-2.99, [1] accept, compute, 10.06s
config 37=[ -1.50 2.25] log(rel.dens)=-1.08, [2] accept, compute, 10.15s
config 38=[ 1.50 2.25] log(rel.dens)= 0.14, [3] accept, compute, 10.07s
config 39=[ 0.00 3.00] log(rel.dens)=-0.03, [0] accept, compute, 10.11s
config 40=[ 3.00 0.00] log(rel.dens)=-3.96, [1] accept, compute, 10.10s
config 41=[ -3.00 0.00] log(rel.dens)=-5.18, [2] accept, compute, 10.11s
config 42=[ -3.00 0.75] log(rel.dens)=-5.49, [3] accept, compute, 10.11s
config 43=[ 3.00 0.75] log(rel.dens)=-4.05, [0] accept, compute, 10.12s
config 44=[ -0.75 3.00] log(rel.dens)=-0.75, [1] accept, compute, 10.10s
config 45=[ 0.75 3.00] log(rel.dens)= 0.07, [2] accept, compute, 10.35s
config 46=[ 3.00 -0.75] log(rel.dens)=-4.11, [3] accept, compute, 10.07s
config 47=[ -3.00 -0.75] log(rel.dens)=-5.99, [0] accept, compute, 10.37s
config 48=[ 2.25 2.25] log(rel.dens)=-0.89, [1] accept, compute, 10.37s
config 49=[ -2.25 2.25] log(rel.dens)=-2.82, [2] accept, compute, 10.43s
config 50=[ -1.50 3.00] log(rel.dens)=-2.11, [3] accept, compute, 10.79s
config 51=[ 3.00 1.50] log(rel.dens)=-3.43, [0] accept, compute, 10.82s
config 52=[ 1.50 3.00] log(rel.dens)=-0.53, [1] accept, compute, 10.91s
config 53=[ -3.00 1.50] log(rel.dens)=-5.45, [2] accept, compute, 10.61s
config 54=[ 0.00 3.75] log(rel.dens)=-6.27, reject, 0.52s
config 55=[ -3.00 2.25] log(rel.dens)=-5.35, [3] accept, compute, 10.94s
config 56=[ 3.75 0.00] log(rel.dens)=-6.19, reject, 0.45s
config 57=[ -3.75 0.00] log(rel.dens)=-8.10, reject, 0.42s
config 58=[ 3.00 2.25] log(rel.dens)=-2.50, [0] accept, compute, 10.38s
config 59=[ 2.25 3.00] log(rel.dens)=-1.50, [1] accept, compute, 10.40s
config 60=[ -3.00 3.00] log(rel.dens)=-6.82, reject, 0.33s
config 61=[ -2.25 3.00] log(rel.dens)=-4.05, [2] accept, compute, 10.15s
config 62=[ 3.00 3.00] log(rel.dens)=-3.02, [3] accept, compute, 9.23s
Combine the densities with relative weights:
config 0/56=[ 0.75 0.00] weight = 0.279 adjusted weight = 0.254 neff = 626.64
config 1/56=[ 0.00 -0.75] weight = 0.241 adjusted weight = 0.220 neff = 659.79
config 2/56=[ 0.00 0.00] weight = 0.437 adjusted weight = 0.392 neff = 653.92
config 3/56=[ -0.75 0.00] weight = 0.297 adjusted weight = 0.270 neff = 681.96
config 4/56=[ 0.00 0.75] weight = 0.312 adjusted weight = 0.284 neff = 656.50
config 5/56=[ -0.75 0.75] weight = 0.262 adjusted weight = 0.241 neff = 684.51
config 6/56=[ -0.75 -0.75] weight = 0.158 adjusted weight = 0.145 neff = 687.08
config 7/56=[ 0.75 -0.75] weight = 0.214 adjusted weight = 0.197 neff = 632.92
config 8/56=[ 0.75 0.75] weight = 0.293 adjusted weight = 0.270 neff = 628.40
config 9/56=[ 0.00 -1.50] weight = 0.001 adjusted weight = 0.001 neff = 690.12
config 10/56=[ -1.50 0.00] weight = 0.115 adjusted weight = 0.108 neff = 710.31
config 11/56=[ 1.50 0.00] weight = 0.170 adjusted weight = 0.161 neff = 599.15
config 12/56=[ 0.00 1.50] weight = 0.527 adjusted weight = 0.499 neff = 661.16
config 13/56=[ -0.75 1.50] weight = 0.379 adjusted weight = 0.363 neff = 689.42
config 14/56=[ 0.75 -1.50] weight = 0.002 adjusted weight = 0.002 neff = 665.18
config 15/56=[ 0.75 1.50] weight = 0.539 adjusted weight = 0.516 neff = 632.89
config 16/56=[ -1.50 -0.75] weight = 0.058 adjusted weight = 0.055 neff = 714.74
config 17/56=[ 1.50 -0.75] weight = 0.113 adjusted weight = 0.108 neff = 606.54
config 18/56=[ -1.50 0.75] weight = 0.095 adjusted weight = 0.091 neff = 713.17
config 19/56=[ 1.50 0.75] weight = 0.134 adjusted weight = 0.129 neff = 600.99
config 20/56=[ 1.50 1.50] weight = 0.275 adjusted weight = 0.274 neff = 605.24
config 21/56=[ -1.50 1.50] weight = 0.125 adjusted weight = 0.125 neff = 718.22
config 22/56=[ 1.50 -1.50] weight = 0.001 adjusted weight = 0.001 neff = 640.72
config 23/56=[ 2.25 0.00] weight = 0.043 adjusted weight = 0.043 neff = 572.71
config 24/56=[ -2.25 0.00] weight = 0.023 adjusted weight = 0.023 neff = 738.98
config 25/56=[ 0.00 2.25] weight = 1.000 adjusted weight = 1.007 neff = 666.45
config 26/56=[ 2.25 0.75] weight = 0.043 adjusted weight = 0.044 neff = 573.85
config 27/56=[ -2.25 -0.75] weight = 0.011 adjusted weight = 0.011 neff = 742.74
config 28/56=[ 2.25 -0.75] weight = 0.036 adjusted weight = 0.037 neff = 580.71
config 29/56=[ -0.75 2.25] weight = 0.500 adjusted weight = 0.510 neff = 695.14
config 30/56=[ -2.25 0.75] weight = 0.018 adjusted weight = 0.018 neff = 742.11
config 31/56=[ 0.75 2.25] weight = 0.978 adjusted weight = 0.997 neff = 638.28
config 32/56=[ 2.25 1.50] weight = 0.083 adjusted weight = 0.087 neff = 578.10
config 33/56=[ -2.25 1.50] weight = 0.022 adjusted weight = 0.023 neff = 747.24
config 34/56=[ -1.50 2.25] weight = 0.148 adjusted weight = 0.157 neff = 724.00
config 35/56=[ 1.50 2.25] weight = 0.504 adjusted weight = 0.534 neff = 610.64
config 36/56=[ 0.00 3.00] weight = 0.426 adjusted weight = 0.467 neff = 672.16
config 37/56=[ 3.00 0.00] weight = 0.008 adjusted weight = 0.009 neff = 546.54
config 38/56=[ -3.00 0.00] weight = 0.002 adjusted weight = 0.003 neff = 767.83
config 39/56=[ -3.00 0.75] weight = 0.002 adjusted weight = 0.002 neff = 771.21
config 40/56=[ 3.00 0.75] weight = 0.008 adjusted weight = 0.008 neff = 547.44
config 41/56=[ -0.75 3.00] weight = 0.206 adjusted weight = 0.229 neff = 700.81
config 42/56=[ 0.75 3.00] weight = 0.468 adjusted weight = 0.519 neff = 643.90
config 43/56=[ 3.00 -0.75] weight = 0.007 adjusted weight = 0.008 neff = 555.51
config 44/56=[ -3.00 -0.75] weight = 0.001 adjusted weight = 0.001 neff = 771.04
config 45/56=[ 2.25 2.25] weight = 0.180 adjusted weight = 0.203 neff = 583.25
config 46/56=[ -2.25 2.25] weight = 0.026 adjusted weight = 0.029 neff = 752.94
config 47/56=[ -1.50 3.00] weight = 0.053 adjusted weight = 0.061 neff = 729.76
config 48/56=[ 3.00 1.50] weight = 0.014 adjusted weight = 0.016 neff = 551.61
config 49/56=[ 1.50 3.00] weight = 0.258 adjusted weight = 0.298 neff = 616.22
config 50/56=[ -3.00 1.50] weight = 0.002 adjusted weight = 0.002 neff = 776.53
config 51/56=[ -3.00 2.25] weight = 0.002 adjusted weight = 0.003 neff = 782.18
config 52/56=[ 3.00 2.25] weight = 0.036 adjusted weight = 0.044 neff = 556.52
config 53/56=[ 2.25 3.00] weight = 0.098 adjusted weight = 0.120 neff = 588.78
config 54/56=[ -2.25 3.00] weight = 0.008 adjusted weight = 0.009 neff = 758.82
config 55/56=[ 3.00 3.00] weight = 0.021 adjusted weight = 0.029 neff = 561.94
Done.
Expected effective number of parameters: 651.365(37.459), eqv.#replicates: 4.673
DIC:
Mean of Deviance................. 3400.47
Deviance at Mean................. 2830.56
Effective number of parameters... 569.909
DIC.............................. 3970.37
Marginal likelihood: Integration -1784.858866 Gaussian-approx -1785.061613
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36e813b07/Model.ini]
Preparations : 0.094 seconds
Approx inference: 177.982 seconds [0.1|0.0|15.0|81.1|3.8]%
Output : 0.400 seconds
---------------------------------
Total : 178.476 seconds
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/Model.ini] max_threads=[4]
inla_build...
number of sections=[16]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[15] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[3044]
m=[0]
ndata=[3044]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 1/3044 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 2/3044 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 3/3044 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 4/3044 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 5/3044 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 6/3044 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 7/3044 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 8/3044 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 9/3044 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 10/3044 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 11/3044 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 12/3044 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 13/3044 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 14/3044 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 15/3044 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 16/3044 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 17/3044 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 18/3044 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d336bb5dff] 19/3044 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3198147a8]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3768773ac]
read n=[9132] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3198147a8]
0/3044 (idx,a,y,d) = (0, 0.317125, 0, 1)
1/3044 (idx,a,y,d) = (1, 0.280247, 1, 1)
2/3044 (idx,a,y,d) = (2, 0.354713, 1, 1)
3/3044 (idx,a,y,d) = (3, 0.338792, 2, 1)
4/3044 (idx,a,y,d) = (4, 0.267835, 0, 1)
5/3044 (idx,a,y,d) = (5, 0.251069, 0, 1)
6/3044 (idx,a,y,d) = (6, 0.21556, 0, 1)
7/3044 (idx,a,y,d) = (7, 0.388104, 0, 1)
8/3044 (idx,a,y,d) = (8, 0.122299, 1, 1)
9/3044 (idx,a,y,d) = (9, 0.258228, 1, 1)
10/3044 (idx,a,y,d) = (10, 0.19197, 0, 1)
11/3044 (idx,a,y,d) = (11, 0.55698, 0, 1)
12/3044 (idx,a,y,d) = (12, 0.208702, 2, 1)
13/3044 (idx,a,y,d) = (13, 0.361889, 0, 1)
14/3044 (idx,a,y,d) = (14, 0.351354, 0, 1)
15/3044 (idx,a,y,d) = (15, 0.394908, 0, 1)
16/3044 (idx,a,y,d) = (16, 0.432727, 1, 1)
17/3044 (idx,a,y,d) = (17, 0.202922, 1, 1)
18/3044 (idx,a,y,d) = (18, 0.33525, 0, 1)
19/3044 (idx,a,y,d) = (19, 0.369026, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[13] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 0/3044 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 2/3044 (idx,y) = (2, 2)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 3/3044 (idx,y) = (3, 3)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 4/3044 (idx,y) = (4, 4)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 5/3044 (idx,y) = (5, 5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 6/3044 (idx,y) = (6, 6)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 7/3044 (idx,y) = (7, 7)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 8/3044 (idx,y) = (8, 8)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 9/3044 (idx,y) = (9, 9)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 10/3044 (idx,y) = (10, 10)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 11/3044 (idx,y) = (11, 11)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 12/3044 (idx,y) = (12, 12)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 13/3044 (idx,y) = (13, 13)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 14/3044 (idx,y) = (14, 14)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 15/3044 (idx,y) = (15, 15)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 16/3044 (idx,y) = (16, 16)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 17/3044 (idx,y) = (17, 17)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 18/3044 (idx,y) = (18, 18)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3782fb571] 19/3044 (idx,y) = (19, 19)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d35ceff75f]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3575794fd]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d34314b5c]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 0/3044 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 1/3044 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 2/3044 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 3/3044 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 7/3044 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 14/3044 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d347182c6b] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[log_Mean_HH_inc] type=[LINEAR]
inla_parse_linear...
section[log_Mean_HH_inc]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 0/3044 (idx,y) = (0, 7.08139)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 1/3044 (idx,y) = (1, 7.43609)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 2/3044 (idx,y) = (2, 7.63617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 3/3044 (idx,y) = (3, 7.63397)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 4/3044 (idx,y) = (4, 8.22604)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 5/3044 (idx,y) = (5, 8.76614)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 6/3044 (idx,y) = (6, 8.26383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 7/3044 (idx,y) = (7, 7.67476)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 8/3044 (idx,y) = (8, 7.61866)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 9/3044 (idx,y) = (9, 7.52668)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 10/3044 (idx,y) = (10, 7.77105)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 11/3044 (idx,y) = (11, 7.07719)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 12/3044 (idx,y) = (12, 7.15467)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 13/3044 (idx,y) = (13, 7.16999)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 14/3044 (idx,y) = (14, 7.31511)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 15/3044 (idx,y) = (15, 7.28148)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 16/3044 (idx,y) = (16, 7.34267)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 17/3044 (idx,y) = (17, 6.91188)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 18/3044 (idx,y) = (18, 7.08242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d340c4944] 19/3044 (idx,y) = (19, 7.14067)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[log_LII] type=[LINEAR]
inla_parse_linear...
section[log_LII]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 0/3044 (idx,y) = (0, 0.210241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 1/3044 (idx,y) = (1, -0.22001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 2/3044 (idx,y) = (2, 0.0554027)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 3/3044 (idx,y) = (3, 0.570642)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 4/3044 (idx,y) = (4, 0.12329)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 5/3044 (idx,y) = (5, -0.494529)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 6/3044 (idx,y) = (6, -0.439035)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 7/3044 (idx,y) = (7, 0.0504294)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 8/3044 (idx,y) = (8, 0.0314962)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 9/3044 (idx,y) = (9, -0.234292)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 10/3044 (idx,y) = (10, -0.69689)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 11/3044 (idx,y) = (11, 0.231353)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 12/3044 (idx,y) = (12, 0.188017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 13/3044 (idx,y) = (13, 0.130104)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 14/3044 (idx,y) = (14, -0.145796)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 15/3044 (idx,y) = (15, -0.121287)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 16/3044 (idx,y) = (16, 0.0095856)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 17/3044 (idx,y) = (17, 0.416826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 18/3044 (idx,y) = (18, 0.0303393)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3429e116f] 19/3044 (idx,y) = (19, 0.0148967)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[7] name=[Perc_branca] type=[LINEAR]
inla_parse_linear...
section[Perc_branca]
dir=[fixed.effect00000004]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 0/3044 (idx,y) = (0, 0.375648)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 1/3044 (idx,y) = (1, 0.348571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 2/3044 (idx,y) = (2, 0.451733)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 3/3044 (idx,y) = (3, 0.336943)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 4/3044 (idx,y) = (4, 0.538333)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 5/3044 (idx,y) = (5, 0.578241)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 6/3044 (idx,y) = (6, 0.5)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 7/3044 (idx,y) = (7, 0.415318)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 8/3044 (idx,y) = (8, 0.396296)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 9/3044 (idx,y) = (9, 0.367857)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 10/3044 (idx,y) = (10, 0.338028)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 11/3044 (idx,y) = (11, 0.302198)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 12/3044 (idx,y) = (12, 0.275789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 13/3044 (idx,y) = (13, 0.332503)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 14/3044 (idx,y) = (14, 0.316138)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 15/3044 (idx,y) = (15, 0.308889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 16/3044 (idx,y) = (16, 0.0991189)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 17/3044 (idx,y) = (17, 0.287383)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 18/3044 (idx,y) = (18, 0.363527)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3178ab094] 19/3044 (idx,y) = (19, 0.422274)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[8] name=[Lit_rate] type=[LINEAR]
inla_parse_linear...
section[Lit_rate]
dir=[fixed.effect00000005]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 0/3044 (idx,y) = (0, 0.843264)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 1/3044 (idx,y) = (1, 0.858571)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 2/3044 (idx,y) = (2, 0.928218)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 3/3044 (idx,y) = (3, 0.838748)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 4/3044 (idx,y) = (4, 0.961667)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 5/3044 (idx,y) = (5, 0.968703)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 6/3044 (idx,y) = (6, 0.940385)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 7/3044 (idx,y) = (7, 0.92233)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 8/3044 (idx,y) = (8, 0.911111)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 9/3044 (idx,y) = (9, 0.873214)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 10/3044 (idx,y) = (10, 0.943662)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 11/3044 (idx,y) = (11, 0.870879)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 12/3044 (idx,y) = (12, 0.831579)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 13/3044 (idx,y) = (13, 0.828144)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 14/3044 (idx,y) = (14, 0.862434)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 15/3044 (idx,y) = (15, 0.888889)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 16/3044 (idx,y) = (16, 0.910793)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 17/3044 (idx,y) = (17, 0.836449)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 18/3044 (idx,y) = (18, 0.850242)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3124ed09f] 19/3044 (idx,y) = (19, 0.846868)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[9] name=[Perc_PPH_Elec] type=[LINEAR]
inla_parse_linear...
section[Perc_PPH_Elec]
dir=[fixed.effect00000006]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 1/3044 (idx,y) = (1, 0.985915)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 2/3044 (idx,y) = (2, 0.991453)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 5/3044 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 7/3044 (idx,y) = (7, 0.991489)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 9/3044 (idx,y) = (9, 0.993464)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 11/3044 (idx,y) = (11, 0.990625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 12/3044 (idx,y) = (12, 0.992701)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 13/3044 (idx,y) = (13, 0.995726)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 16/3044 (idx,y) = (16, 0.995763)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 17/3044 (idx,y) = (17, 0.991597)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d37462801c] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[10] name=[Perc_Wtr_Spply_Ntwrk] type=[LINEAR]
inla_parse_linear...
section[Perc_Wtr_Spply_Ntwrk]
dir=[fixed.effect00000007]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 0/3044 (idx,y) = (0, 0.95288)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 1/3044 (idx,y) = (1, 0.877934)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 2/3044 (idx,y) = (2, 0.871795)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 3/3044 (idx,y) = (3, 0.703125)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 5/3044 (idx,y) = (5, 0.800971)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 7/3044 (idx,y) = (7, 0.825532)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 8/3044 (idx,y) = (8, 0.815789)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 9/3044 (idx,y) = (9, 0.797386)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 11/3044 (idx,y) = (11, 0.6875)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 12/3044 (idx,y) = (12, 0.781022)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 13/3044 (idx,y) = (13, 0.82906)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 14/3044 (idx,y) = (14, 0.922727)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 15/3044 (idx,y) = (15, 0.824)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 16/3044 (idx,y) = (16, 0.84322)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 17/3044 (idx,y) = (17, 0.87395)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 18/3044 (idx,y) = (18, 0.900826)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d36ec8e9f5] 19/3044 (idx,y) = (19, 0.85214)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[11] name=[Perc_Garbage_Col_Serv] type=[LINEAR]
inla_parse_linear...
section[Perc_Garbage_Col_Serv]
dir=[fixed.effect00000008]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 0/3044 (idx,y) = (0, 0.994764)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 1/3044 (idx,y) = (1, 0.99061)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 2/3044 (idx,y) = (2, 0.965812)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 3/3044 (idx,y) = (3, 0.70625)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 4/3044 (idx,y) = (4, 0.994898)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 5/3044 (idx,y) = (5, 0.985437)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 7/3044 (idx,y) = (7, 0.995745)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 8/3044 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 9/3044 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 10/3044 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 11/3044 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 12/3044 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 13/3044 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 14/3044 (idx,y) = (14, 0.995455)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 15/3044 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 16/3044 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 17/3044 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 18/3044 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d348780ca5] 19/3044 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[12] name=[Perc_Sewerage_Conn] type=[LINEAR]
inla_parse_linear...
section[Perc_Sewerage_Conn]
dir=[fixed.effect00000009]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce]
read n=[6088] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 0/3044 (idx,y) = (0, 0.863874)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 1/3044 (idx,y) = (1, 0.685446)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 2/3044 (idx,y) = (2, 0.897436)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 3/3044 (idx,y) = (3, 0.709375)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 4/3044 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 5/3044 (idx,y) = (5, 0.796117)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 6/3044 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 7/3044 (idx,y) = (7, 0.948936)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 8/3044 (idx,y) = (8, 0.973684)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 9/3044 (idx,y) = (9, 0.941176)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 10/3044 (idx,y) = (10, 0.950617)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 11/3044 (idx,y) = (11, 0.775)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 12/3044 (idx,y) = (12, 0.824818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 13/3044 (idx,y) = (13, 0.957265)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 14/3044 (idx,y) = (14, 0.931818)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 15/3044 (idx,y) = (15, 0.904)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 16/3044 (idx,y) = (16, 0.588983)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 17/3044 (idx,y) = (17, 0.537815)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 18/3044 (idx,y) = (18, 0.818182)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/data.files/filee1d3418649ce] 19/3044 (idx,y) = (19, 0.649805)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[11], total length[9141]
tag start-index length
Predictor 0 3044
bymID 3044 6088
(Intercept) 9132 1
log_Mean_HH_inc 9133 1
log_LII 9134 1
Perc_branca 9135 1
Lit_rate 9136 1
Perc_PPH_Elec 9137 1
Perc_Wtr_Spply_Ntwrk 9138 1
Perc_Garbage_Col_Serv 9139 1
Perc_Sewerage_Conn 9140 1
parse section=[14] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7f9382e08260
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [9141]
Chose OpenMP-strategy [LARGE]
Chose density-strategy [HIGH]
Size of graph=[9141] constraints=[1]
Found optimal reordering=[amdc] nnz(L)=[130075] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
Optimise using DEFAULT METHOD
max.logdens= -3187.566386 fn= 1 theta= 3.990000 4.000000 range=[-0.923 6.361]
max.logdens= -3145.149711 fn= 5 theta= 3.106939 3.550064 range=[-0.930 6.416]
max.logdens= -3144.562471 fn= 6 theta= 3.096939 3.550064 range=[-0.931 6.416]
max.logdens= -3103.856273 fn= 11 theta= 2.594613 3.291947 range=[-0.940 6.456]
max.logdens= -3103.676371 fn= 12 theta= 2.594613 3.281947 range=[-0.940 6.456]
max.logdens= -3102.992908 fn= 13 theta= 2.584613 3.291947 range=[-0.940 6.456]
max.logdens= -3037.087578 fn= 16 theta= 1.988235 2.986446 range=[-0.964 6.529]
max.logdens= -3035.935440 fn= 17 theta= 1.978235 2.986446 range=[-0.964 6.530]
max.logdens= -2957.264137 fn= 21 theta= 1.353615 2.666717 range=[-1.013 6.614]
max.logdens= -2956.091136 fn= 22 theta= 1.343615 2.666717 range=[-1.014 6.615]
max.logdens= -2903.068207 fn= 26 theta= 0.835033 2.405448 range=[-1.080 6.677]
max.logdens= -2902.282341 fn= 28 theta= 0.825033 2.405448 range=[-1.081 6.678]
max.logdens= -2884.367468 fn= 31 theta= 0.527847 2.250684 range=[-1.133 6.717]
max.logdens= -2884.010989 fn= 32 theta= 0.517847 2.250684 range=[-1.134 6.718]
max.logdens= -2880.192680 fn= 36 theta= 0.254924 2.113182 range=[-1.191 6.762]
max.logdens= -2880.098296 fn= 38 theta= 0.264924 2.113182 range=[-1.189 6.761]
max.logdens= -2880.004406 fn= 41 theta= 0.305497 2.138661 range=[-1.179 6.753]
max.logdens= -2879.957692 fn= 42 theta= 0.305497 2.128661 range=[-1.180 6.754]
Iter=1 |grad|=1.7 |x-x.old|=2.93 |f-f.old|=308
max.logdens= -2879.833161 fn= 47 theta= 0.345783 2.051722 range=[-1.175 6.754]
max.logdens= -2879.802389 fn= 48 theta= 0.345783 2.041722 range=[-1.175 6.755]
max.logdens= -2879.787645 fn= 50 theta= 0.335783 2.051722 range=[-1.177 6.756]
max.logdens= -2879.779497 fn= 56 theta= 0.340514 2.041514 range=[-1.177 6.756]
Iter=2 |grad|=6.39 |x-x.old|=0.0757 |f-f.old|=0.174
max.logdens= -2879.628688 fn= 58 theta= 0.394821 1.818964 range=[-1.178 6.760]
max.logdens= -2879.568915 fn= 59 theta= 0.394821 1.808964 range=[-1.179 6.760]
max.logdens= -2879.499277 fn= 61 theta= 0.384821 1.818964 range=[-1.180 6.762]
max.logdens= -2879.438968 fn= 66 theta= 0.405339 1.715904 range=[-1.183 6.762]
max.logdens= -2879.422127 fn= 72 theta= 0.424251 1.620910 range=[-1.185 6.760]
Iter=3 |grad|=14.5 |x-x.old|=0.303 |f-f.old|=0.268
max.logdens= -2879.132874 fn= 74 theta= 0.433907 1.424257 range=[-1.197 6.760]
max.logdens= -2879.004027 fn= 76 theta= 0.423907 1.424257 range=[-1.199 6.762]
max.logdens= -2878.936854 fn= 80 theta= 0.433676 1.292454 range=[-1.206 6.759]
max.logdens= -2878.905739 fn= 81 theta= 0.433676 1.282454 range=[-1.207 6.759]
max.logdens= -2878.832878 fn= 82 theta= 0.423676 1.292454 range=[-1.208 6.761]
max.logdens= -2878.782482 fn= 86 theta= 0.423533 1.210551 range=[-1.214 6.760]
max.logdens= -2878.780974 fn= 91 theta= 0.423397 1.132742 range=[-1.220 6.759]
Iter=4 |grad|=6.42 |x-x.old|=0.345 |f-f.old|=0.719
max.logdens= -2878.639600 fn= 96 theta= 0.380074 1.282815 range=[-1.216 6.770]
max.logdens= -2878.638606 fn= 98 theta= 0.380074 1.272815 range=[-1.217 6.770]
Iter=5 |grad|=0.892 |x-x.old|=0.113 |f-f.old|=0.203
max.logdens= -2878.638354 fn= 105 theta= 0.379193 1.255044 range=[-1.218 6.770]
max.logdens= -2878.638043 fn= 108 theta= 0.378956 1.260263 range=[-1.218 6.770]
max.logdens= -2878.638041 fn= 113 theta= 0.378881 1.258748 range=[-1.218 6.770]
Iter=6 |grad|=0.306 |x-x.old|=0.017 |f-f.old|=0.00156
max.logdens= -2878.637510 fn= 119 theta= 0.375985 1.267446 range=[-1.218 6.771]
Iter=7 |grad|=0.00931 |x-x.old|=0.00648 |f-f.old|=0.000531
max.logdens= -2878.609245 fn= 126 theta= 0.375974 1.267152 range=[-1.218 6.771]
Iter=8 |grad|=0.0082 |x-x.old|=0.000208(pass) |f-f.old|=0.000488 Reached numerical limit!
Number of function evaluations = 139
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
181.016669 19.079496
19.079496 16.320527
Eigenvectors of the Hessian
0.993527 -0.113592
0.113592 0.993527
Eigenvalues of the Hessian
183.198072
14.139124
StDev/Correlation matrix (scaled inverse Hessian)
0.079377 -0.351027
0.264355
Compute corrected stdev for theta[0]: negative 1.061666 positive 1.015253
Compute corrected stdev for theta[1]: negative 1.279794 positive 1.665125
max.logdens= -2878.637098 fn= 153 theta= 0.375974 1.267152 range=[-1.218 6.771]
config 0=[ 0.00 0.00] log(rel.dens)=-0.18, [3] accept, compute, 10.63s
config 1=[ -0.75 0.00] log(rel.dens)=-0.40, [1] accept, compute, 10.70s
config 2=[ 0.75 0.00] log(rel.dens)=-0.36, [0] accept, compute, 10.83s
config 3=[ 0.00 -0.75] log(rel.dens)=-0.13, [2] accept, compute, 10.87s
config 4=[ -0.75 0.75] log(rel.dens)=-0.40, [1] accept, compute, 10.21s
config 5=[ 0.00 0.75] log(rel.dens)=-0.11, [3] accept, compute, 10.34s
config 6=[ -0.75 -0.75] log(rel.dens)=-0.57, [0] accept, compute, 10.32s
config 7=[ 0.75 -0.75] log(rel.dens)=-0.40, [2] accept, compute, 10.29s
config 8=[ 0.00 -1.50] log(rel.dens)=-0.76, [3] accept, compute, 9.85s
config 9=[ 0.75 0.75] log(rel.dens)=-0.49, [1] accept, compute, 10.04s
config 10=[ 1.50 0.00] log(rel.dens)=-1.00, [2] accept, compute, 9.94s
config 11=[ -1.50 0.00] log(rel.dens)=-1.06, [0] accept, compute, 9.97s
config 12=[ 0.00 1.50] log(rel.dens)=-0.35, [3] accept, compute, 10.41s
config 13=[ -0.75 1.50] log(rel.dens)=-0.94, [1] accept, compute, 10.30s
config 14=[ 0.75 -1.50] log(rel.dens)=-0.89, [2] accept, compute, 10.25s
config 15=[ -0.75 -1.50] log(rel.dens)=-0.95, [0] accept, compute, 10.26s
config 16=[ 0.75 1.50] log(rel.dens)=-0.56, [3] accept, compute, 10.31s
config 17=[ -1.50 0.75] log(rel.dens)=-1.44, [0] accept, compute, 10.16s
config 18=[ 1.50 -0.75] log(rel.dens)=-1.11, [2] accept, compute, 10.18s
config 19=[ -1.50 -0.75] log(rel.dens)=-1.29, [1] accept, compute, 10.33s
config 20=[ 1.50 0.75] log(rel.dens)=-1.07, [3] accept, compute, 10.19s
config 21=[ 1.50 -1.50] log(rel.dens)=-1.35, [1] accept, compute, 10.33s
config 22=[ -1.50 -1.50] log(rel.dens)=-1.73, [0] accept, compute, 10.43s
config 23=[ 1.50 1.50] log(rel.dens)=-1.36, [2] accept, compute, 10.56s
config 24=[ -1.50 1.50] log(rel.dens)=-1.58, [3] accept, compute, 10.45s
config 25=[ 0.00 -2.25] log(rel.dens)=-1.57, [1] accept, compute, 10.34s
config 26=[ 2.25 0.00] log(rel.dens)=-2.08, [0] accept, compute, 10.36s
config 27=[ -2.25 0.00] log(rel.dens)=-2.26, [2] accept, compute, 10.42s
config 28=[ 0.00 2.25] log(rel.dens)=-0.92, [3] accept, compute, 10.66s
config 29=[ 2.25 0.75] log(rel.dens)=-2.15, [1] accept, compute, 10.85s
config 30=[ -0.75 -2.25] log(rel.dens)=-1.66, [0] accept, compute, 10.82s
config 31=[ 0.75 -2.25] log(rel.dens)=-1.46, [2] accept, compute, 10.82s
config 32=[ -2.25 -0.75] log(rel.dens)=-2.30, [3] accept, compute, 10.35s
config 33=[ -0.75 2.25] log(rel.dens)=-1.17, [0] accept, compute, 10.34s
config 34=[ 2.25 -0.75] log(rel.dens)=-2.22, [1] accept, compute, 10.44s
config 35=[ -2.25 0.75] log(rel.dens)=-2.51, [2] accept, compute, 10.38s
config 36=[ 0.75 2.25] log(rel.dens)=-0.82, [3] accept, compute, 10.36s
config 37=[ 2.25 -1.50] log(rel.dens)=-2.40, [1] accept, compute, 10.12s
config 38=[ -2.25 -1.50] log(rel.dens)=-2.73, [0] accept, compute, 10.41s
config 39=[ -1.50 -2.25] log(rel.dens)=-2.41, [2] accept, compute, 10.28s
config 40=[ 2.25 1.50] log(rel.dens)=-2.52, [3] accept, compute, 10.34s
config 41=[ -1.50 2.25] log(rel.dens)=-2.16, [1] accept, compute, 10.31s
config 42=[ 1.50 -2.25] log(rel.dens)=-1.98, [0] accept, compute, 10.25s
config 43=[ -2.25 1.50] log(rel.dens)=-3.01, [2] accept, compute, 10.33s
config 44=[ 1.50 2.25] log(rel.dens)=-1.49, [3] accept, compute, 10.22s
config 45=[ 0.00 3.00] log(rel.dens)=-1.39, [1] accept, compute, 10.16s
config 46=[ 3.00 0.00] log(rel.dens)=-3.64, [0] accept, compute, 10.19s
config 47=[ 0.00 -3.00] log(rel.dens)=-2.63, [2] accept, compute, 10.29s
config 48=[ -0.75 -3.00] log(rel.dens)=-3.03, [1] accept, compute, 10.24s
config 49=[ -3.00 0.00] log(rel.dens)=-4.06, [3] accept, compute, 10.33s
config 50=[ -3.00 0.75] log(rel.dens)=-4.42, [0] accept, compute, 10.37s
config 51=[ 3.00 0.75] log(rel.dens)=-3.74, [2] accept, compute, 10.36s
config 52=[ -0.75 3.00] log(rel.dens)=-1.77, [1] accept, compute, 10.38s
config 53=[ 0.75 -3.00] log(rel.dens)=-2.63, [3] accept, compute, 10.50s
config 54=[ 0.75 3.00] log(rel.dens)=-1.21, [0] accept, compute, 10.44s
config 55=[ 3.00 -0.75] log(rel.dens)=-3.73, [2] accept, compute, 10.23s
config 56=[ -3.00 -0.75] log(rel.dens)=-4.04, [1] accept, compute, 10.58s
config 57=[ 2.25 2.25] log(rel.dens)=-2.51, [3] accept, compute, 10.72s
config 58=[ 2.25 -2.25] log(rel.dens)=-2.89, [0] accept, compute, 10.58s
config 59=[ -2.25 -2.25] log(rel.dens)=-3.64, [2] accept, compute, 10.59s
config 60=[ -2.25 2.25] log(rel.dens)=-3.71, [1] accept, compute, 10.76s
config 61=[ -1.50 3.00] log(rel.dens)=-2.88, [3] accept, compute, 10.78s
config 62=[ -3.00 -1.50] log(rel.dens)=-4.44, [0] accept, compute, 10.87s
config 63=[ 1.50 -3.00] log(rel.dens)=-3.02, [2] accept, compute, 10.90s
config 64=[ 3.00 1.50] log(rel.dens)=-3.90, [1] accept, compute, 10.25s
config 65=[ 1.50 3.00] log(rel.dens)=-1.72, [3] accept, compute, 10.13s
config 66=[ -1.50 -3.00] log(rel.dens)=-3.85, [2] accept, compute, 10.21s
config 67=[ -3.00 1.50] log(rel.dens)=-5.01, [0] accept, compute, 10.35s
config 68=[ 3.00 -1.50] log(rel.dens)=-3.78, [1] accept, compute, 10.89s
config 69=[ -2.25 -3.00] log(rel.dens)=-5.13, [3] accept, compute, 10.77s
config 70=[ 2.25 -3.00] log(rel.dens)=-3.77, [2] accept, compute, 10.91s
config 71=[ 0.00 -3.75] log(rel.dens)=-4.54, [0] accept, compute, 10.90s
config 72=[ -3.00 2.25] log(rel.dens)=-5.86, [1] accept, compute, 10.46s
config 73=[ 3.00 -2.25] log(rel.dens)=-4.16, [3] accept, compute, 10.40s
config 74=[ 3.00 2.25] log(rel.dens)=-4.06, [2] accept, compute, 10.31s
config 75=[ -3.00 -2.25] log(rel.dens)=-5.33, [0] accept, compute, 10.41s
config 76=[ 2.25 3.00] log(rel.dens)=-2.74, [1] accept, compute, 10.23s
config 77=[ 0.00 3.75] log(rel.dens)=-1.78, [3] accept, compute, 10.48s
config 78=[ -3.75 0.00] log(rel.dens)=-6.42, reject, 0.33s
config 79=[ -2.25 3.00] log(rel.dens)=-4.58, [2] accept, compute, 10.43s
config 80=[ 3.75 0.00] log(rel.dens)=-5.62, [0] accept, compute, 10.32s
config 81=[ -0.75 3.75] log(rel.dens)=-2.51, [3] accept, compute, 10.71s
config 82=[ 0.75 -3.75] log(rel.dens)=-4.39, [1] accept, compute, 10.73s
config 83=[ 3.75 0.75] log(rel.dens)=-5.77, [0] accept, compute, 10.52s
config 84=[ 3.75 -0.75] log(rel.dens)=-5.54, [2] accept, compute, 10.71s
config 85=[ 3.75 1.50] log(rel.dens)=-6.10, reject, 0.26s
config 86=[ -1.50 -3.75] log(rel.dens)=-6.02, reject, 0.39s
config 87=[ -0.75 -3.75] log(rel.dens)=-5.22, [1] accept, compute, 10.14s
config 88=[ 0.75 3.75] log(rel.dens)=-1.85, [3] accept, compute, 10.27s
config 89=[ -1.50 3.75] log(rel.dens)=-3.72, [0] accept, compute, 10.21s
config 90=[ -3.00 -3.00] log(rel.dens)=-6.85, reject, 0.29s
config 91=[ 1.50 -3.75] log(rel.dens)=-4.61, [2] accept, compute, 10.35s
config 92=[ 1.50 3.75] log(rel.dens)=-2.06, [1] accept, compute, 10.43s
config 93=[ 3.75 -1.50] log(rel.dens)=-5.56, [3] accept, compute, 10.53s
config 94=[ -3.00 3.00] log(rel.dens)=-6.84, reject, 0.31s
config 95=[ 3.00 -3.00] log(rel.dens)=-4.88, [0] accept, compute, 10.36s
config 96=[ 3.00 3.00] log(rel.dens)=-4.24, [2] accept, compute, 10.44s
config 97=[ 2.25 -3.75] log(rel.dens)=-5.17, [3] accept, compute, 10.18s
config 98=[ 2.25 3.75] log(rel.dens)=-2.98, [1] accept, compute, 10.08s
config 99=[ 3.75 -2.25] log(rel.dens)=-5.87, [0] accept, compute, 10.14s
config 100=[ 0.00 -4.50] log(rel.dens)=-7.27, reject, 0.29s
config 101=[ 4.50 0.00] log(rel.dens)=-7.95, reject, 0.29s
config 102=[ 4.50 -0.75] log(rel.dens)=-7.78, reject, 0.32s
config 103=[ -2.25 3.75] log(rel.dens)=-5.56, [2] accept, compute, 10.34s
config 104=[ 0.00 4.50] log(rel.dens)=-2.40, [3] accept, compute, 10.76s
config 105=[ 0.75 4.50] log(rel.dens)=-2.13, [1] accept, compute, 10.65s
config 106=[ -0.75 4.50] log(rel.dens)=-3.24, [0] accept, compute, 10.86s
config 107=[ 3.75 -3.00] log(rel.dens)=-6.30, reject, 0.40s
config 108=[ -1.50 4.50] log(rel.dens)=-4.67, [2] accept, compute, 10.86s
config 109=[ 3.00 -3.75] log(rel.dens)=-6.17, reject, 0.27s
config 110=[ -2.25 4.50] log(rel.dens)=-6.70, reject, 0.25s
config 111=[ 1.50 4.50] log(rel.dens)=-2.60, [3] accept, compute, 10.58s
config 112=[ 3.00 3.75] log(rel.dens)=-4.39, [0] accept, compute, 11.29s
config 113=[ 2.25 4.50] log(rel.dens)=-3.22, [1] accept, compute, 11.03s
config 114=[ 0.00 5.25] log(rel.dens)=-3.05, [2] accept, compute, 10.92s
config 115=[ -0.75 5.25] log(rel.dens)=-4.05, [3] accept, compute, 10.49s
config 116=[ 0.75 5.25] log(rel.dens)=-2.63, [0] accept, compute, 10.44s
config 117=[ 1.50 5.25] log(rel.dens)=-2.98, [2] accept, compute, 10.21s
config 118=[ 3.00 4.50] log(rel.dens)=-4.57, [1] accept, compute, 10.35s
config 119=[ -1.50 5.25] log(rel.dens)=-5.70, [3] accept, compute, 10.34s
config 120=[ 2.25 5.25] log(rel.dens)=-3.65, [0] accept, compute, 10.35s
config 121=[ 3.00 5.25] log(rel.dens)=-4.66, [1] accept, compute, 10.33s
config 122=[ 0.00 6.00] log(rel.dens)=-4.07, [2] accept, compute, 10.46s
config 123=[ -1.50 6.00] log(rel.dens)=-6.96, reject, 0.27s
config 124=[ 0.75 6.00] log(rel.dens)=-3.18, [3] accept, compute, 10.46s
config 125=[ -0.75 6.00] log(rel.dens)=-4.94, [0] accept, compute, 10.49s
config 126=[ 1.50 6.00] log(rel.dens)=-3.43, [1] accept, compute, 10.28s
config 127=[ 2.25 6.00] log(rel.dens)=-3.69, [2] accept, compute, 10.41s
config 128=[ 3.00 6.00] log(rel.dens)=-4.76, [3] accept, compute, 10.60s
config 129=[ 0.00 6.75] log(rel.dens)=-4.56, [0] accept, compute, 10.55s
config 130=[ -0.75 6.75] log(rel.dens)=-5.89, [1] accept, compute, 10.53s
config 131=[ 0.75 6.75] log(rel.dens)=-4.06, [2] accept, compute, 10.47s
config 132=[ 1.50 6.75] log(rel.dens)=-3.85, [3] accept, compute, 10.51s
config 133=[ -0.75 7.50] log(rel.dens)=-6.89, reject, 0.37s
config 134=[ 2.25 6.75] log(rel.dens)=-3.94, [0] accept, compute, 10.33s
config 135=[ 3.00 6.75] log(rel.dens)=-4.85, [1] accept, compute, 10.39s
config 136=[ 0.00 7.50] log(rel.dens)=-5.44, [2] accept, compute, 10.05s
config 137=[ 0.75 7.50] log(rel.dens)=-4.60, [3] accept, compute, 10.33s
config 138=[ 0.00 8.25] log(rel.dens)=-6.29, reject, 0.27s
config 139=[ 1.50 7.50] log(rel.dens)=-4.09, [0] accept, compute, 10.37s
config 140=[ 2.25 7.50] log(rel.dens)=-4.28, [1] accept, compute, 10.24s
config 141=[ 3.00 7.50] log(rel.dens)=-4.94, [2] accept, compute, 10.25s
Combine the densities with relative weights:
config 0/128=[ 0.00 0.00] weight = 0.930 adjusted weight = 0.821 neff = 889.58
config 1/128=[ -0.75 0.00] weight = 0.751 adjusted weight = 0.672 neff = 913.79
config 2/128=[ 0.75 0.00] weight = 0.783 adjusted weight = 0.700 neff = 865.51
config 3/128=[ 0.00 -0.75] weight = 0.981 adjusted weight = 0.877 neff = 889.74
config 4/128=[ -0.75 0.75] weight = 0.753 adjusted weight = 0.682 neff = 915.47
config 5/128=[ 0.00 0.75] weight = 1.000 adjusted weight = 0.894 neff = 890.80
config 6/128=[ -0.75 -0.75] weight = 0.630 adjusted weight = 0.571 neff = 913.77
config 7/128=[ 0.75 -0.75] weight = 0.747 adjusted weight = 0.677 neff = 866.30
config 8/128=[ 0.00 -1.50] weight = 0.525 adjusted weight = 0.488 neff = 892.52
config 9/128=[ 0.75 0.75] weight = 0.685 adjusted weight = 0.620 neff = 866.60
config 10/128=[ 1.50 0.00] weight = 0.410 adjusted weight = 0.381 neff = 841.77
config 11/128=[ -1.50 0.00] weight = 0.385 adjusted weight = 0.358 neff = 938.19
config 12/128=[ 0.00 1.50] weight = 0.788 adjusted weight = 0.732 neff = 893.77
config 13/128=[ -0.75 1.50] weight = 0.437 adjusted weight = 0.411 neff = 919.11
config 14/128=[ 0.75 -1.50] weight = 0.458 adjusted weight = 0.431 neff = 869.50
config 15/128=[ -0.75 -1.50] weight = 0.434 adjusted weight = 0.408 neff = 915.68
config 16/128=[ 0.75 1.50] weight = 0.639 adjusted weight = 0.601 neff = 869.04
config 17/128=[ -1.50 0.75] weight = 0.265 adjusted weight = 0.250 neff = 940.69
config 18/128=[ 1.50 -0.75] weight = 0.369 adjusted weight = 0.347 neff = 843.16
config 19/128=[ -1.50 -0.75] weight = 0.308 adjusted weight = 0.289 neff = 937.83
config 20/128=[ 1.50 0.75] weight = 0.384 adjusted weight = 0.361 neff = 842.34
config 21/128=[ 1.50 -1.50] weight = 0.288 adjusted weight = 0.282 neff = 846.67
config 22/128=[ -1.50 -1.50] weight = 0.199 adjusted weight = 0.194 neff = 939.28
config 23/128=[ 1.50 1.50] weight = 0.288 adjusted weight = 0.281 neff = 844.72
config 24/128=[ -1.50 1.50] weight = 0.230 adjusted weight = 0.225 neff = 944.09
config 25/128=[ 0.00 -2.25] weight = 0.232 adjusted weight = 0.230 neff = 897.47
config 26/128=[ 2.25 0.00] weight = 0.139 adjusted weight = 0.138 neff = 818.34
config 27/128=[ -2.25 0.00] weight = 0.117 adjusted weight = 0.116 neff = 962.83
config 28/128=[ 0.00 2.25] weight = 0.446 adjusted weight = 0.442 neff = 898.35
config 29/128=[ 2.25 0.75] weight = 0.130 adjusted weight = 0.130 neff = 818.44
config 30/128=[ -0.75 -2.25] weight = 0.213 adjusted weight = 0.213 neff = 919.85
config 31/128=[ 0.75 -2.25] weight = 0.260 adjusted weight = 0.260 neff = 874.85
config 32/128=[ -2.25 -0.75] weight = 0.112 adjusted weight = 0.112 neff = 961.84
config 33/128=[ -0.75 2.25] weight = 0.345 adjusted weight = 0.346 neff = 923.49
config 34/128=[ 2.25 -0.75] weight = 0.121 adjusted weight = 0.121 neff = 820.33
config 35/128=[ -2.25 0.75] weight = 0.091 adjusted weight = 0.091 neff = 965.48
config 36/128=[ 0.75 2.25] weight = 0.491 adjusted weight = 0.492 neff = 872.98
config 37/128=[ 2.25 -1.50] weight = 0.101 adjusted weight = 0.105 neff = 824.41
config 38/128=[ -2.25 -1.50] weight = 0.073 adjusted weight = 0.076 neff = 962.79
config 39/128=[ -1.50 -2.25] weight = 0.100 adjusted weight = 0.104 neff = 942.78
config 40/128=[ 2.25 1.50] weight = 0.090 adjusted weight = 0.094 neff = 820.54
config 41/128=[ -1.50 2.25] weight = 0.128 adjusted weight = 0.134 neff = 949.08
config 42/128=[ 1.50 -2.25] weight = 0.154 adjusted weight = 0.160 neff = 852.83
config 43/128=[ -2.25 1.50] weight = 0.055 adjusted weight = 0.057 neff = 969.55
config 44/128=[ 1.50 2.25] weight = 0.251 adjusted weight = 0.262 neff = 848.21
config 45/128=[ 0.00 3.00] weight = 0.277 adjusted weight = 0.298 neff = 903.83
config 46/128=[ 3.00 0.00] weight = 0.029 adjusted weight = 0.032 neff = 795.33
config 47/128=[ 0.00 -3.00] weight = 0.081 adjusted weight = 0.087 neff = 904.91
config 48/128=[ -0.75 -3.00] weight = 0.054 adjusted weight = 0.059 neff = 926.89
config 49/128=[ -3.00 0.00] weight = 0.019 adjusted weight = 0.021 neff = 987.75
config 50/128=[ -3.00 0.75] weight = 0.014 adjusted weight = 0.015 neff = 990.80
config 51/128=[ 3.00 0.75] weight = 0.026 adjusted weight = 0.029 neff = 794.98
config 52/128=[ -0.75 3.00] weight = 0.191 adjusted weight = 0.208 neff = 929.26
config 53/128=[ 0.75 -3.00] weight = 0.080 adjusted weight = 0.088 neff = 883.23
config 54/128=[ 0.75 3.00] weight = 0.335 adjusted weight = 0.365 neff = 878.17
config 55/128=[ 3.00 -0.75] weight = 0.027 adjusted weight = 0.029 neff = 797.84
config 56/128=[ -3.00 -0.75] weight = 0.020 adjusted weight = 0.021 neff = 986.33
config 57/128=[ 2.25 2.25] weight = 0.091 adjusted weight = 0.101 neff = 823.55
config 58/128=[ 2.25 -2.25] weight = 0.062 adjusted weight = 0.069 neff = 831.15
config 59/128=[ -2.25 -2.25] weight = 0.029 adjusted weight = 0.033 neff = 965.98
config 60/128=[ -2.25 2.25] weight = 0.027 adjusted weight = 0.030 neff = 974.84
config 61/128=[ -1.50 3.00] weight = 0.063 adjusted weight = 0.071 neff = 955.12
config 62/128=[ -3.00 -1.50] weight = 0.013 adjusted weight = 0.015 neff = 986.78
config 63/128=[ 1.50 -3.00] weight = 0.055 adjusted weight = 0.062 neff = 861.89
config 64/128=[ 3.00 1.50] weight = 0.023 adjusted weight = 0.026 neff = 796.39
config 65/128=[ 1.50 3.00] weight = 0.201 adjusted weight = 0.228 neff = 852.99
config 66/128=[ -1.50 -3.00] weight = 0.024 adjusted weight = 0.027 neff = 949.17
config 67/128=[ -3.00 1.50] weight = 0.007 adjusted weight = 0.008 neff = 995.19
config 68/128=[ 3.00 -1.50] weight = 0.025 adjusted weight = 0.029 neff = 802.44
config 69/128=[ -2.25 -3.00] weight = 0.007 adjusted weight = 0.008 neff = 971.73
config 70/128=[ 2.25 -3.00] weight = 0.026 adjusted weight = 0.031 neff = 840.89
config 71/128=[ 0.00 -3.75] weight = 0.012 adjusted weight = 0.014 neff = 915.75
config 72/128=[ -3.00 2.25] weight = 0.003 adjusted weight = 0.004 neff = 1000.78
config 73/128=[ 3.00 -2.25] weight = 0.017 adjusted weight = 0.021 neff = 809.84
config 74/128=[ 3.00 2.25] weight = 0.019 adjusted weight = 0.023 neff = 799.30
config 75/128=[ -3.00 -2.25] weight = 0.005 adjusted weight = 0.007 neff = 989.40
config 76/128=[ 2.25 3.00] weight = 0.072 adjusted weight = 0.087 neff = 828.10
config 77/128=[ 0.00 3.75] weight = 0.189 adjusted weight = 0.226 neff = 910.06
config 78/128=[ -2.25 3.00] weight = 0.012 adjusted weight = 0.014 neff = 981.16
config 79/128=[ 3.75 0.00] weight = 0.004 adjusted weight = 0.005 neff = 772.71
config 80/128=[ -0.75 3.75] weight = 0.091 adjusted weight = 0.110 neff = 936.03
config 81/128=[ 0.75 -3.75] weight = 0.014 adjusted weight = 0.017 neff = 894.82
config 82/128=[ 3.75 0.75] weight = 0.003 adjusted weight = 0.004 neff = 771.90
config 83/128=[ 3.75 -0.75] weight = 0.004 adjusted weight = 0.005 neff = 775.61
config 84/128=[ -0.75 -3.75] weight = 0.006 adjusted weight = 0.007 neff = 937.18
config 85/128=[ 0.75 3.75] weight = 0.176 adjusted weight = 0.214 neff = 884.61
config 86/128=[ -1.50 3.75] weight = 0.027 adjusted weight = 0.034 neff = 962.08
config 87/128=[ 1.50 -3.75] weight = 0.011 adjusted weight = 0.014 neff = 874.21
config 88/128=[ 1.50 3.75] weight = 0.143 adjusted weight = 0.180 neff = 858.90
config 89/128=[ 3.75 -1.50] weight = 0.004 adjusted weight = 0.005 neff = 780.88
config 90/128=[ 3.00 -3.00] weight = 0.009 adjusted weight = 0.011 neff = 820.26
config 91/128=[ 3.00 3.00] weight = 0.016 adjusted weight = 0.021 neff = 803.51
config 92/128=[ 2.25 -3.75] weight = 0.006 adjusted weight = 0.009 neff = 853.96
config 93/128=[ 2.25 3.75] weight = 0.057 adjusted weight = 0.076 neff = 833.71
config 94/128=[ 3.75 -2.25] weight = 0.003 adjusted weight = 0.004 neff = 789.02
config 95/128=[ -2.25 3.75] weight = 0.004 adjusted weight = 0.006 neff = 988.32
config 96/128=[ 0.00 4.50] weight = 0.102 adjusted weight = 0.138 neff = 917.33
config 97/128=[ 0.75 4.50] weight = 0.133 adjusted weight = 0.183 neff = 891.39
config 98/128=[ -0.75 4.50] weight = 0.044 adjusted weight = 0.060 neff = 943.47
config 99/128=[ -1.50 4.50] weight = 0.010 adjusted weight = 0.015 neff = 969.80
config 100/128=[ 1.50 4.50] weight = 0.083 adjusted weight = 0.118 neff = 865.93
config 101/128=[ 3.00 3.75] weight = 0.014 adjusted weight = 0.020 neff = 808.81
config 102/128=[ 2.25 4.50] weight = 0.045 adjusted weight = 0.068 neff = 840.23
config 103/128=[ 0.00 5.25] weight = 0.053 adjusted weight = 0.082 neff = 925.26
config 104/128=[ -0.75 5.25] weight = 0.019 adjusted weight = 0.031 neff = 951.59
config 105/128=[ 0.75 5.25] weight = 0.080 adjusted weight = 0.127 neff = 899.12
config 106/128=[ 1.50 5.25] weight = 0.057 adjusted weight = 0.093 neff = 873.46
config 107/128=[ 3.00 4.50] weight = 0.012 adjusted weight = 0.019 neff = 815.12
config 108/128=[ -1.50 5.25] weight = 0.004 adjusted weight = 0.006 neff = 978.15
config 109/128=[ 2.25 5.25] weight = 0.029 adjusted weight = 0.051 neff = 847.76
config 110/128=[ 3.00 5.25] weight = 0.011 adjusted weight = 0.020 neff = 822.12
config 111/128=[ 0.00 6.00] weight = 0.019 adjusted weight = 0.035 neff = 934.16
config 112/128=[ 0.75 6.00] weight = 0.047 adjusted weight = 0.086 neff = 907.46
config 113/128=[ -0.75 6.00] weight = 0.008 adjusted weight = 0.015 neff = 960.29
config 114/128=[ 1.50 6.00] weight = 0.036 adjusted weight = 0.069 neff = 881.68
config 115/128=[ 2.25 6.00] weight = 0.028 adjusted weight = 0.057 neff = 855.45
config 116/128=[ 3.00 6.00] weight = 0.010 adjusted weight = 0.021 neff = 829.82
config 117/128=[ 0.00 6.75] weight = 0.012 adjusted weight = 0.025 neff = 942.84
config 118/128=[ -0.75 6.75] weight = 0.003 adjusted weight = 0.007 neff = 969.45
config 119/128=[ 0.75 6.75] weight = 0.019 adjusted weight = 0.042 neff = 916.68
config 120/128=[ 1.50 6.75] weight = 0.024 adjusted weight = 0.054 neff = 890.37
config 121/128=[ 2.25 6.75] weight = 0.022 adjusted weight = 0.053 neff = 863.93
config 122/128=[ 3.00 6.75] weight = 0.009 adjusted weight = 0.023 neff = 838.10
config 123/128=[ 0.00 7.50] weight = 0.005 adjusted weight = 0.012 neff = 952.35
config 124/128=[ 0.75 7.50] weight = 0.011 adjusted weight = 0.029 neff = 925.88
config 125/128=[ 1.50 7.50] weight = 0.019 adjusted weight = 0.050 neff = 899.25
config 126/128=[ 2.25 7.50] weight = 0.015 adjusted weight = 0.044 neff = 873.00
config 127/128=[ 3.00 7.50] weight = 0.008 adjusted weight = 0.025 neff = 846.86
Done.
Expected effective number of parameters: 889.013(35.684), eqv.#replicates: 3.424
DIC:
Mean of Deviance................. 5216.27
Deviance at Mean................. 4399.31
Effective number of parameters... 816.961
DIC.............................. 6033.23
Marginal likelihood: Integration -2879.809089 Gaussian-approx -2880.728978
Compute the marginal for each of the 2 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[1] using numerical integration...
Compute the marginal for theta[0] to theta[1] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmppfFHiX/filee1d36f94e9cb/Model.ini]
Preparations : 0.111 seconds
Approx inference: 384.625 seconds [0.1|0.0|4.1|87.2|8.6]%
Output : 0.462 seconds
---------------------------------
Total : 385.199 seconds
bymID <- seq(1,3044)
m_year <- lapply(models_year, function(x) x$marginals.random$bymID[1:3044])
zeta_year <- lapply(m_year, function(y) lapply(y, function(x) inla.emarginal(exp,x)))
a=0
inlaprob_year <- lapply(models_year, function(y) lapply(y$marginals.random$bymID[1:3044], function(X){
1-inla.pmarginal(a, X)}))
Spatial.results_year <- mapply(function(x,y) data.frame(bymID=bymID,SMR_bym=unlist(x),
pp=unlist(y)), zeta_year, inlaprob_year, SIMPLIFY = FALSE)
CTs_data$bymID <- bymID
library(broom)
CTs_BYM_map_yr_tidy <- lapply(CTs_bym_yr, function(x) tidy(x))
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
for (i in 1:length(CTs_bym_yr)){
CTs_bym_yr[[i]]$polyID <- sapply(slot(CTs_bym_yr[[i]], "polygons"), function(x) slot(x, "ID"))
}
CTs_BYM_map_yr_tidy <- mapply(function(x,y) merge(x, y, by.x = "id", by.y="polyID"), CTs_BYM_map_yr_tidy, CTs_bym_yr, SIMPLIFY = FALSE)
CTs_BYM_map_yr_tidy <- lapply(CTs_BYM_map_yr_tidy, function(x) cbind(x, SMR_cut_v1(x$SMR_bym)))
for (i in 1:length(CTs_BYM_map_yr_tidy)){
colnames(CTs_BYM_map_yr_tidy[[i]])[24] <- "SMR_cuts"
}
fit_SMR_CT_map_yrs <- vector("list", 17)
for (i in 1:length(CTs_BYM_map_yr_tidy)){
p <- plot_fort_maps2(CTs_BYM_map_yr_tidy[[i]], fill_str="SMR_cuts", legend_title = paste0("Age and Sex Standardized SMR\n for Fortaleza Census Tracts - ", (2001+i)))
print(p)
ggsave(plot=p, filename = paste0("SMR_", (2010+i), ".png"), height=200, width=350, units="mm")
fit_SMR_CT_map_yrs[[i]] <- p
}
fitted_values <- lapply(models_year, function(x) x$summary.fixed$mean)
Spatial.results_year2 <- Spatial.results_year
for (i in 1:length(Spatial.results_year2)){
Spatial.results_year2[[i]]$intercept <- rep(fitted_values[i], 3044)
}
for (i in 1:length(Spatial.results_year2)){
Spatial.results_year2[[i]]$fittedSMR <- unname(unlist(Spatial.results_year2[[i]]$intercept)) + unname(unlist(Spatial.results_year2[[i]]$SMR_bym))
}
Error in `$<-.data.frame`(`*tmp*`, "fittedSMR", value = c(8.75697903530692, :
replacement has 27396 rows, data has 3044
library(dplyr)
CTs_data_bym_yr <- lapply(Spatial.results_year2, function(x) left_join(CTs_data, x, by="bymID"))
CTs_bym_yr <- replicate(17, CTs)
names(CTs_bym_yr) <- as.character(2001:2017)
for (i in 1:length(CTs_bym_yr)){
CTs_bym_yr[[i]]@data <- CTs_data_bym_yr[[i]]
}
library(broom)
CTs_BYM_map_yr_tidy <- lapply(CTs_bym_yr, function(x) tidy(x))
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
Regions defined for each Polygons
for (i in 1:length(CTs_bym_yr)){
CTs_bym_yr[[i]]$polyID <- sapply(slot(CTs_bym_yr[[i]], "polygons"), function(x) slot(x, "ID"))
}
CTs_BYM_map_yr_tidy <- mapply(function(x,y) merge(x, y, by.x = "id", by.y="polyID"), CTs_BYM_map_yr_tidy, CTs_bym_yr, SIMPLIFY = FALSE)
CTs_BYM_map_yr_tidy <- lapply(CTs_BYM_map_yr_tidy, function(x) cbind(x, SMR_cut_v1(x$SMR_fit)))
for (i in 1:length(CTs_BYM_map_yr_tidy)){
colnames(CTs_BYM_map_yr_tidy[[i]])[26] <- "SMR_cuts"
}
Error in names(x) <- value :
'names' attribute [26] must be the same length as the vector [25]
fit_SMR_CT_map_yrs <- vector("list", 17)
for (i in 1:length(CTs_BYM_map_yr_tidy)){
p <- plot_fort_maps2(CTs_BYM_map_yr_tidy[[i]], fill_str="SMR_cuts", legend_title = paste0("Age and Sex Standardized SMR\n for Fortaleza Census Tracts - ", (2000+i)))
print(p)
ggsave(plot=p, filename = paste0("SMR_fit", (2000+i), ".png"), height=200, width=350, units="mm")
fit_SMR_CT_map_yrs[[i]] <- p
}
summaries <- lapply(models_year, function(x) summary(x))
Read in monthly data
SMR_data_mnth <- read_csv("~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_Files/CT_SMR_IR_per_mnth.csv",
col_types = cols(CD_GEOCODI = col_character()))
number of columns of result is not a multiple of vector length (arg 1)1020 parsing failures.
row [38;5;246m# A tibble: 5 x 5[39m col row col expected actual file expected [3m[38;5;246m<int>[39m[23m [3m[38;5;246m<chr>[39m[23m [3m[38;5;246m<chr>[39m[23m [3m[38;5;246m<chr>[39m[23m [3m[38;5;246m<chr>[39m[23m actual [38;5;250m1[39m [4m6[24m733 pop no trailing chara… e3 '~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_… file [38;5;250m2[39m [4m6[24m734 pop no trailing chara… e3 '~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_… row [38;5;250m3[39m [4m6[24m735 pop no trailing chara… e3 '~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_… col [38;5;250m4[39m [4m6[24m736 pop no trailing chara… e3 '~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_… expected [38;5;250m5[39m [4m6[24m737 pop no trailing chara… e3 '~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_…
... ................................. ... ....................................................................................................... ........ .................................................................................................................................................................................................................................... ...... ................................................................................................................................ .... ................................................................................................................................ ... ................................................................................................................................ ... ................................................................................................................................ ........ ................................................................................................................................
See problems(...) for more details.
BYM_data_mnthly <- SMR_data_mnth[,1:4]
BYM_data_mnthly <- rbind(BYM_data_mnthly, data.frame(CD_GEOCODI=as.vector(sapply(BYM_data_yearly$`2001`$CD_GEOCODI[!(BYM_data_yearly$`2001`$CD_GEOCODI %in% unique(BYM_data_mnthly$CD_GEOCODI))], function(x) rep(x, 204), USE.NAMES = FALSE)), Counter=rep(1:204, 23), obs_count=rep(0, 4692), exp_count=rep(0,4692)))
BYM_data_mnthly <- left_join(BYM_data_mnthly, select(BYM_data_yearly$`2001`, CD_GEOCODI, bymID, log_Mean_HH_inc, log_LII, Perc_branca, Lit_rate, Perc_PPH_Elec, Perc_Wtr_Spply_Ntwrk), by="CD_GEOCODI")
BYM_data_mnthly$yr_2016 <- ifelse(BYM_data_mnthly$Counter >= 180 | BYM_data_mnthly$Counter <= 192, 1, 0)
BYM_data_mnthly$bymID2 <- BYM_data_mnthly$bymID
colnames(BYM_data_mnthly)[3] <- "y"
colnames(BYM_data_mnthly)[4] <- "E"
Yearly BYM data
BYM_data_yrly_agg <- cbind(BYM_data_yearly[[1]], Year=rep(2001,3044))
for (i in 2:17){
BYM_data_yrly_agg <- rbind(BYM_data_yrly_agg, cbind(BYM_data_yearly[[i]], Year=rep(2001+i,3044)))
}
BYM_data_yrly_agg <- BYM_data_yrly_agg %>% group_by(CD_GEOCODI, year, bymID) %>% summarize(y=sum(y), E=sum(E)) %>% left_join(select(BYM_data_yearly[[1]], -bymID, -y, -E, -year), by="CD_GEOCODI")
formula_2 <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj) + log_Mean_HH_inc
formula_3 <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj) + log_LII
formula_4 <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj) + log_Mean_HH_inc + log_LII
formula_5 <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj) + log_Mean_HH_inc + log_LII + Lit_rate + Perc_PPH_Elec + Perc_Wtr_Spply_Ntwrk
formula_6 <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj) + log_Mean_HH_inc + log_LII + Perc_branca + Lit_rate + Perc_PPH_Elec + Perc_Wtr_Spply_Ntwrk
formula_mnthly_null <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj, constr=TRUE) + f(bymID2, Counter, model="iid", constr=TRUE) + Counter + yr_2016
models_yrlytrnd_null <- inla(formula_yrlytrnd_null, family="poisson", data=BYM_data_yrly_agg, E=E, verbose=TRUE, control.compute=list(dic=TRUE), control.predictor=list(compute=TRUE))
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/Model.ini] max_threads=[4]
inla_build...
number of sections=[10]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[9] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[51748]
m=[0]
ndata=[51748]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 0/51748 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 1/51748 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 2/51748 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 3/51748 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 4/51748 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 5/51748 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 6/51748 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 7/51748 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 8/51748 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 9/51748 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 10/51748 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 11/51748 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 12/51748 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 13/51748 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 14/51748 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 15/51748 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 16/51748 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 17/51748 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 18/51748 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba7d448707] 19/51748 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba4602020e]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba2dd5090a]
read n=[155244] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba4602020e]
0/51748 (idx,a,y,d) = (0, 0.872178, 0, 1)
1/51748 (idx,a,y,d) = (1, 0.872178, 1, 1)
2/51748 (idx,a,y,d) = (2, 0.872178, 0, 1)
3/51748 (idx,a,y,d) = (3, 0.872178, 0, 1)
4/51748 (idx,a,y,d) = (4, 0.872178, 0, 1)
5/51748 (idx,a,y,d) = (5, 0.872178, 1, 1)
6/51748 (idx,a,y,d) = (6, 0.872178, 1, 1)
7/51748 (idx,a,y,d) = (7, 0.872178, 0, 1)
8/51748 (idx,a,y,d) = (8, 0.872178, 0, 1)
9/51748 (idx,a,y,d) = (9, 0.872178, 1, 1)
10/51748 (idx,a,y,d) = (10, 0.872178, 0, 1)
11/51748 (idx,a,y,d) = (11, 0.872178, 1, 1)
12/51748 (idx,a,y,d) = (12, 0.872178, 1, 1)
13/51748 (idx,a,y,d) = (13, 0.872178, 5, 1)
14/51748 (idx,a,y,d) = (14, 0.872178, 1, 1)
15/51748 (idx,a,y,d) = (15, 0.872178, 0, 1)
16/51748 (idx,a,y,d) = (16, 0.872178, 0, 1)
17/51748 (idx,a,y,d) = (17, 0.287131, 0, 1)
18/51748 (idx,a,y,d) = (18, 0.287131, 0, 1)
19/51748 (idx,a,y,d) = (19, 0.287131, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[6] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 0/51748 (idx,y) = (0, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 1/51748 (idx,y) = (1, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 2/51748 (idx,y) = (2, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 3/51748 (idx,y) = (3, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 4/51748 (idx,y) = (4, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 5/51748 (idx,y) = (5, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 6/51748 (idx,y) = (6, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 7/51748 (idx,y) = (7, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 8/51748 (idx,y) = (8, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 9/51748 (idx,y) = (9, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 10/51748 (idx,y) = (10, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 11/51748 (idx,y) = (11, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 12/51748 (idx,y) = (12, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 13/51748 (idx,y) = (13, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 14/51748 (idx,y) = (14, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 15/51748 (idx,y) = (15, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 16/51748 (idx,y) = (16, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 17/51748 (idx,y) = (17, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 18/51748 (idx,y) = (18, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1066a21d] 19/51748 (idx,y) = (19, 23)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba2b0a690c]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3e774f56]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba421d2654]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[7] name=[bymID2] type=[FFIELD]
inla_parse_ffield...
section=[bymID2]
dir=[random.effect00000002]
model=[iid]
PRIOR->name=[loggamma]
hyperid=[1001|bymID2]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 5e-05]
correct=[-1]
constr=[1]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 0/51748 (idx,y) = (0, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 1/51748 (idx,y) = (1, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 2/51748 (idx,y) = (2, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 3/51748 (idx,y) = (3, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 4/51748 (idx,y) = (4, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 5/51748 (idx,y) = (5, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 6/51748 (idx,y) = (6, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 7/51748 (idx,y) = (7, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 8/51748 (idx,y) = (8, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 9/51748 (idx,y) = (9, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 10/51748 (idx,y) = (10, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 11/51748 (idx,y) = (11, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 12/51748 (idx,y) = (12, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 13/51748 (idx,y) = (13, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 14/51748 (idx,y) = (14, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 15/51748 (idx,y) = (15, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 16/51748 (idx,y) = (16, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 17/51748 (idx,y) = (17, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 18/51748 (idx,y) = (18, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3280acf6] 19/51748 (idx,y) = (19, 23)
read weights from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 0/51748 (idx,y) = (0, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 1/51748 (idx,y) = (1, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 2/51748 (idx,y) = (2, 2003)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 3/51748 (idx,y) = (3, 2004)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 4/51748 (idx,y) = (4, 2005)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 5/51748 (idx,y) = (5, 2006)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 6/51748 (idx,y) = (6, 2007)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 7/51748 (idx,y) = (7, 2008)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 8/51748 (idx,y) = (8, 2009)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 9/51748 (idx,y) = (9, 2010)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 10/51748 (idx,y) = (10, 2011)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 11/51748 (idx,y) = (11, 2012)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 12/51748 (idx,y) = (12, 2013)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 13/51748 (idx,y) = (13, 2014)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 14/51748 (idx,y) = (14, 2015)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 15/51748 (idx,y) = (15, 2016)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 16/51748 (idx,y) = (16, 2017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 17/51748 (idx,y) = (17, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 18/51748 (idx,y) = (18, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1ddb6461] 19/51748 (idx,y) = (19, 2003)
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba3876a8e7]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
cyclic=[0]
initialise log_precision[4]
fixed=[0]
computed/guessed rank-deficiency = [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 0/51748 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 1/51748 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 2/51748 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 3/51748 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 4/51748 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 5/51748 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 6/51748 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 7/51748 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 8/51748 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 9/51748 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 10/51748 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 11/51748 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 12/51748 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 13/51748 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 14/51748 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 15/51748 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 16/51748 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 17/51748 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 18/51748 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba1dfd1cd1] 19/51748 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[year] type=[LINEAR]
inla_parse_linear...
section[year]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 0/51748 (idx,y) = (0, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 1/51748 (idx,y) = (1, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 2/51748 (idx,y) = (2, 2003)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 3/51748 (idx,y) = (3, 2004)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 4/51748 (idx,y) = (4, 2005)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 5/51748 (idx,y) = (5, 2006)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 6/51748 (idx,y) = (6, 2007)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 7/51748 (idx,y) = (7, 2008)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 8/51748 (idx,y) = (8, 2009)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 9/51748 (idx,y) = (9, 2010)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 10/51748 (idx,y) = (10, 2011)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 11/51748 (idx,y) = (11, 2012)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 12/51748 (idx,y) = (12, 2013)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 13/51748 (idx,y) = (13, 2014)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 14/51748 (idx,y) = (14, 2015)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 15/51748 (idx,y) = (15, 2016)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 16/51748 (idx,y) = (16, 2017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 17/51748 (idx,y) = (17, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 18/51748 (idx,y) = (18, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/data.files/file2ba546eecb8] 19/51748 (idx,y) = (19, 2003)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[5], total length[60882]
tag start-index length
Predictor 0 51748
bymID 51748 6088
bymID2 57836 3044
(Intercept) 60880 1
year 60881 1
parse section=[8] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7fbfb0603bc0
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [60882]
Chose OpenMP-strategy [HUGE]
Chose density-strategy [LOW]
Size of graph=[60882] constraints=[2]
Found optimal reordering=[amdc] nnz(L)=[321856] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
theta[2] = [Log precision for bymID2]
Optimise using DEFAULT METHOD
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -52700.122913 fn= 1 theta= 4.000000 4.000000 3.990000 range=[-2.263 7.169]
max.logdens= -52684.759125 fn= 2 theta= 4.010000 4.000000 4.000000 range=[-2.263 7.169]
max.logdens= -52669.673388 fn= 4 theta= 4.000000 4.000000 4.010000 range=[-2.263 7.169]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -51162.223222 fn= 7 theta= 3.999660 4.011173 4.999938 range=[-2.263 7.169]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -51162.084141 fn= 8 theta= 4.009660 4.011173 4.999938 range=[-2.263 7.168]
max.logdens= -51146.998902 fn= 10 theta= 3.999660 4.011173 5.009938 range=[-2.263 7.168]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -35057.174899 fn= 14 theta= 3.996599 4.111735 13.999375 range=[-184.754 13.720]
max.logdens= -35057.146988 fn= 16 theta= 3.996599 4.101735 13.999375 range=[-184.761 13.721]
max.logdens= -35049.484102 fn= 17 theta= 3.996599 4.111735 14.009375 range=[-184.784 13.588]
max.logdens= -34768.617186 fn= 22 theta= 3.996446 4.116763 14.449347 range=[-184.818 8.891]
max.logdens= -34763.434540 fn= 25 theta= 3.996446 4.116763 14.459347 range=[-184.807 8.807]
max.logdens= -34588.628843 fn= 29 theta= 3.996301 4.121539 14.876820 range=[-184.837 5.951]
max.logdens= -34588.522188 fn= 33 theta= 3.996301 4.121539 14.886820 range=[-184.865 5.900]
max.logdens= -34587.830625 fn= 35 theta= 3.986301 4.121539 14.876820 range=[-184.849 5.952]
max.logdens= -34524.867884 fn= 36 theta= 3.996163 4.126077 15.282920 range=[-184.871 5.872]
max.logdens= -34524.306249 fn= 37 theta= 3.996163 4.116077 15.282920 range=[-184.887 5.872]
max.logdens= -34523.490492 fn= 41 theta= 3.996163 4.136077 15.282920 range=[-184.871 5.872]
Iter=1 |grad|=258 |x-x.old|=6.51 |f-f.old|=1.82e+04
max.logdens= -34518.589601 fn= 51 theta= 3.996228 4.126089 15.282929 range=[-184.878 5.872]
Iter=2 |grad|=310 |x-x.old|=3.86e-05(pass) |f-f.old|=2.35 Reached numerical limit!
Number of function evaluations = 70
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
Mode not sufficient accurate; switch to a stupid local search strategy.
max.logdens= -34515.452734 fn= 92 theta= 3.896228 3.795077 15.282929 range=[-184.884 5.873]
max.logdens= -34512.654498 fn= 100 theta= 3.896228 3.673526 15.282929 range=[-184.903 5.873]
max.logdens= -34512.131789 fn= 102 theta= 4.017778 3.795077 15.282929 range=[-184.906 5.873]
max.logdens= -34511.651983 fn= 107 theta= 4.017778 3.667449 15.282929 range=[-184.886 5.873]
max.logdens= -34510.616844 fn= 114 theta= 4.151788 3.667449 15.282929 range=[-184.869 5.873]
max.logdens= -34503.633235 fn= 115 theta= 4.017778 3.533439 15.282929 range=[-184.905 5.873]
max.logdens= -34497.561862 fn= 123 theta= 4.017778 3.392729 15.282929 range=[-184.879 5.873]
max.logdens= -34496.158900 fn= 127 theta= 4.165524 3.392729 15.282929 range=[-184.871 5.873]
max.logdens= -34490.150317 fn= 129 theta= 4.017778 3.244984 15.282929 range=[-184.924 5.873]
max.logdens= -34482.434957 fn= 135 theta= 4.017778 3.089851 15.282929 range=[-184.917 5.874]
max.logdens= -34477.609234 fn= 142 theta= 4.017778 2.926961 15.282929 range=[-184.926 5.874]
max.logdens= -34475.937297 fn= 148 theta= 4.188812 2.926961 15.282929 range=[-184.922 5.874]
max.logdens= -34471.507235 fn= 151 theta= 4.017778 2.755927 15.282929 range=[-184.918 5.874]
max.logdens= -34460.099867 fn= 158 theta= 4.017778 2.576342 15.282929 range=[-184.951 5.875]
max.logdens= -34455.177421 fn= 165 theta= 4.017778 2.387777 15.282929 range=[-184.959 5.875]
max.logdens= -34446.694042 fn= 171 theta= 4.017778 2.189784 15.282929 range=[-184.965 5.876]
max.logdens= -34439.879947 fn= 177 theta= 4.017778 1.981891 15.282929 range=[-184.966 5.877]
max.logdens= -34431.209021 fn= 183 theta= 4.017778 1.763603 15.282929 range=[-185.003 5.878]
max.logdens= -34430.093488 fn= 190 theta= 4.017778 1.763603 15.512131 range=[-184.993 5.859]
max.logdens= -34420.116562 fn= 193 theta= 4.017778 1.534402 15.282929 range=[-185.017 5.879]
max.logdens= -34417.244691 fn= 198 theta= 4.017778 1.293740 15.282929 range=[-185.007 5.881]
max.logdens= -34413.359368 fn= 205 theta= 4.270473 1.293740 15.282929 range=[-185.031 5.880]
max.logdens= -34405.136511 fn= 206 theta= 4.017778 1.293740 15.535624 range=[-185.024 5.861]
max.logdens= -34398.454787 fn= 224 theta= 4.283108 1.028410 15.535624 range=[-185.036 5.863]
max.logdens= -34393.872978 fn= 230 theta= 4.283108 0.749814 15.535624 range=[-185.101 5.867]
max.logdens= -34391.362196 fn= 250 theta= 4.575634 0.457288 15.535624 range=[-185.117 5.870]
max.logdens= -34390.501262 fn= 258 theta= 4.575634 0.457288 15.535624 range=[-185.091 5.870]
92.743561 -12.129788 -9.564351
-12.129788 177.890161 53.961694
-9.564351 53.961694 808.005332
Eigenvectors of the Hessian
0.990631 0.135776 -0.014666
0.136534 -0.986985 0.084962
0.002939 0.086168 0.996276
Eigenvalues of the Hessian
91.043392
174.847721
812.747941
StDev/Correlation matrix (scaled inverse Hessian)
0.104329 0.090438 0.021816
0.076059 -0.139742
0.035550
Compute corrected stdev for theta[0]: negative 0.644551 positive 2.004477
Compute corrected stdev for theta[1]: negative 0.696048 positive 0.667962
Compute corrected stdev for theta[2]: negative 0.894561 positive 0.444569
config 0/15=[ 0.00 0.00 0.00] log(rel.dens)=-3.84, [0] accept, compute, 712.53s
config 1/15=[ 2.20 -0.77 -0.98] log(rel.dens)=-0.88, [3] accept, compute, 712.56s
config 2/15=[ -0.71 -0.77 -0.98] log(rel.dens)=-4.79, [2] accept, compute, 712.86s
config 3/15=[ 0.00 -1.33 0.00] log(rel.dens)=-0.55, [1] accept, compute, 714.09s
config 4/15=[ -0.71 0.73 0.49] log(rel.dens)=-4.23, [2] accept, compute, 780.81s
config 5/15=[ 3.82 0.00 0.00] log(rel.dens)=-0.08, [0] accept, compute, 783.85s
config 6/15=[ 0.00 0.00 0.85] log(rel.dens)=-1.83, [1] accept, compute, 782.79s
config 7/15=[ 2.20 0.73 0.49] log(rel.dens)=-6.18, [3] accept, compute, 785.02s
config 8/15=[ -0.71 0.73 -0.98] log(rel.dens)=-1.71, [2] accept, compute, 868.22s
config 9/15=[ 0.00 0.00 -1.70] log(rel.dens)=-6.31, [1] accept, compute, 868.53s
config 10/15=[ -1.23 -0.00 0.00] log(rel.dens)=-0.03, [0] accept, compute, 868.86s
config 11/15=[ 2.20 0.73 -0.98] log(rel.dens)=-0.59, [3] accept, compute, 868.06s
config 12/15=[ -0.71 -0.77 0.49] log(rel.dens)=-4.40, [1] accept, compute, 587.61s
config 13/15=[ 2.20 -0.77 0.49] log(rel.dens)=-4.22, [2] accept, compute, 590.71s
config 14/15=[ -0.00 1.27 -0.00] log(rel.dens)=-3.26, [0] accept, compute, 589.52s
Combine the densities with relative weights:
config 0/15=[ 0.00 0.00 0.00] weight = 0.011 neff = 2227.14
config 1/15=[ 3.82 0.00 0.00] weight = 0.951 neff = 2221.82
config 2/15=[ -1.23 -0.00 0.00] weight = 1.000 neff = 2229.00
config 3/15=[ -0.00 1.27 -0.00] weight = 0.040 neff = 2230.11
config 4/15=[ 0.00 -1.33 0.00] weight = 0.595 neff = 2224.58
config 5/15=[ 0.00 0.00 0.85] weight = 0.165 neff = 2216.49
config 6/15=[ 0.00 0.00 -1.70] weight = 0.002 neff = 2248.36
config 7/15=[ -0.71 -0.77 0.49] weight = 0.013 neff = 2220.52
config 8/15=[ -0.71 -0.77 -0.98] weight = 0.009 neff = 2238.99
config 9/15=[ -0.71 0.73 0.49] weight = 0.015 neff = 2223.83
config 10/15=[ -0.71 0.73 -0.98] weight = 0.186 neff = 2242.00
config 11/15=[ 2.20 -0.77 0.49] weight = 0.015 neff = 2216.33
config 12/15=[ 2.20 -0.77 -0.98] weight = 0.430 neff = 2235.02
config 13/15=[ 2.20 0.73 0.49] weight = 0.002 neff = 2219.43
config 14/15=[ 2.20 0.73 -0.98] weight = 0.575 neff = 2237.84
Done.
Expected effective number of parameters: 2228.579(6.762), eqv.#replicates: 23.220
DIC:
Mean of Deviance................. 64761.5
Deviance at Mean................. 62573.7
Effective number of parameters... 2187.71
DIC.............................. 66949.2
Marginal likelihood: Integration -34396.040433 Gaussian-approx -34396.756309
Compute the marginal for each of the 3 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[2] using numerical integration...
Compute the marginal for theta[0] to theta[2] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba2800b366/Model.ini]
Preparations : 0.376 seconds
Approx inference: 3188.342 seconds [0.2|0.0|6.7|92.9|0.3]%
Output : 4.679 seconds
---------------------------------
Total : 3193.397 seconds
saveRDS(models_yrlytrnd_null, "models_yrlytrnd_null.rds")
formula_yrlytrnd_2016fix <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj, constr=TRUE) + f(bymID2, year, model="iid", constr=TRUE) + year + bin_2016
models_yrlytrnd_2016fix <- inla(formula_yrlytrnd_2016fix, family="poisson", data=BYM_data_yrly_agg, E=E, verbose=TRUE, control.compute=list(dic=TRUE), control.predictor=list(compute=TRUE))
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/Model.ini] max_threads=[4]
inla_build...
number of sections=[11]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[10] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[51748]
m=[0]
ndata=[51748]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 0/51748 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 1/51748 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 2/51748 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 3/51748 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 4/51748 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 5/51748 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 6/51748 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 7/51748 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 8/51748 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 9/51748 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 10/51748 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 11/51748 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 12/51748 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 13/51748 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 14/51748 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 15/51748 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 16/51748 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 17/51748 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 18/51748 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba62aa9542] 19/51748 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2a1fc4b9]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2babac634a]
read n=[155244] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2a1fc4b9]
0/51748 (idx,a,y,d) = (0, 0.872178, 0, 1)
1/51748 (idx,a,y,d) = (1, 0.872178, 1, 1)
2/51748 (idx,a,y,d) = (2, 0.872178, 0, 1)
3/51748 (idx,a,y,d) = (3, 0.872178, 0, 1)
4/51748 (idx,a,y,d) = (4, 0.872178, 0, 1)
5/51748 (idx,a,y,d) = (5, 0.872178, 1, 1)
6/51748 (idx,a,y,d) = (6, 0.872178, 1, 1)
7/51748 (idx,a,y,d) = (7, 0.872178, 0, 1)
8/51748 (idx,a,y,d) = (8, 0.872178, 0, 1)
9/51748 (idx,a,y,d) = (9, 0.872178, 1, 1)
10/51748 (idx,a,y,d) = (10, 0.872178, 0, 1)
11/51748 (idx,a,y,d) = (11, 0.872178, 1, 1)
12/51748 (idx,a,y,d) = (12, 0.872178, 1, 1)
13/51748 (idx,a,y,d) = (13, 0.872178, 5, 1)
14/51748 (idx,a,y,d) = (14, 0.872178, 1, 1)
15/51748 (idx,a,y,d) = (15, 0.872178, 0, 1)
16/51748 (idx,a,y,d) = (16, 0.872178, 0, 1)
17/51748 (idx,a,y,d) = (17, 0.287131, 0, 1)
18/51748 (idx,a,y,d) = (18, 0.287131, 0, 1)
19/51748 (idx,a,y,d) = (19, 0.287131, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[7] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 0/51748 (idx,y) = (0, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 1/51748 (idx,y) = (1, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 2/51748 (idx,y) = (2, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 3/51748 (idx,y) = (3, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 4/51748 (idx,y) = (4, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 5/51748 (idx,y) = (5, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 6/51748 (idx,y) = (6, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 7/51748 (idx,y) = (7, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 8/51748 (idx,y) = (8, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 9/51748 (idx,y) = (9, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 10/51748 (idx,y) = (10, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 11/51748 (idx,y) = (11, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 12/51748 (idx,y) = (12, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 13/51748 (idx,y) = (13, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 14/51748 (idx,y) = (14, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 15/51748 (idx,y) = (15, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 16/51748 (idx,y) = (16, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 17/51748 (idx,y) = (17, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 18/51748 (idx,y) = (18, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba258568da] 19/51748 (idx,y) = (19, 23)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40b83ed4]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba57e66f0d]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba59a6d374]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[8] name=[bymID2] type=[FFIELD]
inla_parse_ffield...
section=[bymID2]
dir=[random.effect00000002]
model=[iid]
PRIOR->name=[loggamma]
hyperid=[1001|bymID2]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 5e-05]
correct=[-1]
constr=[1]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 0/51748 (idx,y) = (0, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 1/51748 (idx,y) = (1, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 2/51748 (idx,y) = (2, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 3/51748 (idx,y) = (3, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 4/51748 (idx,y) = (4, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 5/51748 (idx,y) = (5, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 6/51748 (idx,y) = (6, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 7/51748 (idx,y) = (7, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 8/51748 (idx,y) = (8, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 9/51748 (idx,y) = (9, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 10/51748 (idx,y) = (10, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 11/51748 (idx,y) = (11, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 12/51748 (idx,y) = (12, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 13/51748 (idx,y) = (13, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 14/51748 (idx,y) = (14, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 15/51748 (idx,y) = (15, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 16/51748 (idx,y) = (16, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 17/51748 (idx,y) = (17, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 18/51748 (idx,y) = (18, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba40d6bfa2] 19/51748 (idx,y) = (19, 23)
read weights from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 0/51748 (idx,y) = (0, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 1/51748 (idx,y) = (1, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 2/51748 (idx,y) = (2, 2003)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 3/51748 (idx,y) = (3, 2004)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 4/51748 (idx,y) = (4, 2005)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 5/51748 (idx,y) = (5, 2006)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 6/51748 (idx,y) = (6, 2007)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 7/51748 (idx,y) = (7, 2008)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 8/51748 (idx,y) = (8, 2009)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 9/51748 (idx,y) = (9, 2010)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 10/51748 (idx,y) = (10, 2011)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 11/51748 (idx,y) = (11, 2012)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 12/51748 (idx,y) = (12, 2013)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 13/51748 (idx,y) = (13, 2014)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 14/51748 (idx,y) = (14, 2015)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 15/51748 (idx,y) = (15, 2016)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 16/51748 (idx,y) = (16, 2017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 17/51748 (idx,y) = (17, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 18/51748 (idx,y) = (18, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba52bf45ef] 19/51748 (idx,y) = (19, 2003)
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba24f17e]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
cyclic=[0]
initialise log_precision[4]
fixed=[0]
computed/guessed rank-deficiency = [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 0/51748 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 1/51748 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 2/51748 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 3/51748 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 4/51748 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 5/51748 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 6/51748 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 7/51748 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 8/51748 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 9/51748 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 10/51748 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 11/51748 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 12/51748 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 13/51748 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 14/51748 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 15/51748 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 16/51748 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 17/51748 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 18/51748 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba2d2d52a9] 19/51748 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[year] type=[LINEAR]
inla_parse_linear...
section[year]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 0/51748 (idx,y) = (0, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 1/51748 (idx,y) = (1, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 2/51748 (idx,y) = (2, 2003)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 3/51748 (idx,y) = (3, 2004)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 4/51748 (idx,y) = (4, 2005)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 5/51748 (idx,y) = (5, 2006)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 6/51748 (idx,y) = (6, 2007)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 7/51748 (idx,y) = (7, 2008)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 8/51748 (idx,y) = (8, 2009)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 9/51748 (idx,y) = (9, 2010)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 10/51748 (idx,y) = (10, 2011)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 11/51748 (idx,y) = (11, 2012)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 12/51748 (idx,y) = (12, 2013)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 13/51748 (idx,y) = (13, 2014)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 14/51748 (idx,y) = (14, 2015)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 15/51748 (idx,y) = (15, 2016)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 16/51748 (idx,y) = (16, 2017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 17/51748 (idx,y) = (17, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 18/51748 (idx,y) = (18, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7a8dec6a] 19/51748 (idx,y) = (19, 2003)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[bin_2016] type=[LINEAR]
inla_parse_linear...
section[bin_2016]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 0/51748 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 1/51748 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 2/51748 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 3/51748 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 4/51748 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 5/51748 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 6/51748 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 7/51748 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 8/51748 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 9/51748 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 10/51748 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 11/51748 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 12/51748 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 13/51748 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 14/51748 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 15/51748 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 16/51748 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 17/51748 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 18/51748 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/data.files/file2ba7b9c6201] 19/51748 (idx,y) = (19, 0)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[6], total length[60883]
tag start-index length
Predictor 0 51748
bymID 51748 6088
bymID2 57836 3044
(Intercept) 60880 1
year 60881 1
bin_2016 60882 1
parse section=[9] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7f9568d02e60
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [60883]
Chose OpenMP-strategy [HUGE]
Chose density-strategy [LOW]
Size of graph=[60883] constraints=[2]
Found optimal reordering=[amdc] nnz(L)=[333806] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
theta[2] = [Log precision for bymID2]
Optimise using DEFAULT METHOD
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -52672.267612 fn= 1 theta= 4.000000 4.000000 4.010000 range=[-2.344 7.173]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -51164.817438 fn= 7 theta= 3.999670 4.011167 4.999938 range=[-2.344 7.172]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -51149.593118 fn= 9 theta= 3.999670 4.011167 5.009938 range=[-2.344 7.172]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -34766.923998 fn= 14 theta= 3.996699 4.111668 13.999376 range=[-211.316 13.855]
max.logdens= -34766.706232 fn= 15 theta= 4.006699 4.111668 13.999376 range=[-211.338 13.854]
max.logdens= -34765.794691 fn= 18 theta= 3.996699 4.111668 14.009376 range=[-211.308 13.722]
max.logdens= -34483.110966 fn= 22 theta= 3.996550 4.116693 14.449348 range=[-211.339 9.026]
max.logdens= -34479.566372 fn= 23 theta= 3.996550 4.106693 14.449348 range=[-211.348 9.026]
max.logdens= -34474.553483 fn= 25 theta= 3.996550 4.116693 14.459348 range=[-211.393 8.941]
max.logdens= -34304.758210 fn= 29 theta= 3.996409 4.121467 14.876821 range=[-211.351 6.085]
max.logdens= -34301.504736 fn= 30 theta= 4.006409 4.121467 14.876821 range=[-211.391 6.084]
max.logdens= -34299.861596 fn= 31 theta= 3.996409 4.111467 14.876821 range=[-211.375 6.085]
max.logdens= -34295.715369 fn= 32 theta= 3.996409 4.121467 14.886821 range=[-211.386 6.035]
max.logdens= -34236.514576 fn= 36 theta= 3.996275 4.126002 15.282921 range=[-211.404 6.007]
max.logdens= -34234.354539 fn= 37 theta= 3.996275 4.116002 15.282921 range=[-211.418 6.007]
max.logdens= -34232.618949 fn= 39 theta= 3.996275 4.126002 15.292921 range=[-211.443 6.006]
Iter=1 |grad|=163 |x-x.old|=6.53 |f-f.old|=1.85e+04
max.logdens= -34232.609854 fn= 79 theta= 3.995512 4.126163 15.307119 range=[-211.408 6.005]
max.logdens= -34232.326754 fn= 82 theta= 3.995512 4.126163 15.297119 range=[-211.421 6.006]
max.logdens= -34230.426477 fn= 85 theta= 3.985512 4.126163 15.307119 range=[-211.450 6.005]
Iter=2 |grad|=291 |x-x.old|=0.000442(pass) |f-f.old|=6.78 Reached numerical limit!
Number of function evaluations = 107
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
max.logdens= -34230.124120 fn= 110 theta= 3.995511 4.026163 15.307119 range=[-211.428 6.005]
Mode not sufficient accurate; switch to a stupid local search strategy.
max.logdens= -34227.749974 fn= 131 theta= 3.890511 3.921163 15.307119 range=[-211.425 6.005]
max.logdens= -34223.442172 fn= 136 theta= 3.890511 3.810913 15.307119 range=[-211.428 6.005]
max.logdens= -34222.653258 fn= 142 theta= 3.890511 3.695150 15.307119 range=[-211.417 6.005]
max.logdens= -34221.302146 fn= 143 theta= 4.006274 3.810913 15.307119 range=[-211.422 6.005]
421.079200 -6.109490 107.415775
-6.109490 716.273696 209.657822
107.415775 209.657822 1078.539683
Eigenvectors of the Hessian
0.124066 -0.968495 -0.215930
0.402825 -0.149714 0.902949
0.906829 0.199008 -0.371559
Eigenvalues of the Hessian
1186.368269
398.062797
631.461514
StDev/Correlation matrix (scaled inverse Hessian)
0.049429 0.051262 -0.166873
0.038526 -0.243436
0.031801
max.logdens= -34220.372366 fn= 171 theta= 4.013478 3.834303 15.359775 range=[-211.461 6.000]
Compute corrected stdev for theta[0]: negative 0.772810 positive 1.000000
Compute corrected stdev for theta[1]: negative 0.548299 positive 3.065120
Compute corrected stdev for theta[2]: negative 7.725298 positive 0.490942
max.logdens= -34218.053863 fn= 175 theta= 4.112535 3.522953 15.455714 range=[-211.480 5.991]
max.logdens= -34213.650299 fn= 176 theta= 4.105510 3.500147 15.404372 range=[-211.433 5.996]
config 0/15=[ 1.10 -0.60 -8.50] log(rel.dens)=12.28, [3] accept, compute, 1013.85s
config 1/15=[ 0.00 -1.04 -0.00] log(rel.dens)= 3.49, [1] accept, compute, 1013.71s
config 2/15=[ -0.85 -0.60 -8.50] log(rel.dens)=16.69, [2] accept, compute, 1013.76s
config 3/15=[ 0.00 0.00 0.00] log(rel.dens)= 5.71, [0] accept, compute, 1019.85s
config 4/15=[ -0.85 3.37 0.54] log(rel.dens)= 0.25, [2] accept, compute, 902.54s
config 5/15=[ 1.10 3.37 0.54] log(rel.dens)= 2.69, [3] accept, compute, 902.52s
config 6/15=[ -0.00 -0.00 0.94] log(rel.dens)= 6.26, [1] accept, compute, 906.29s
max.logdens= -34213.202631 fn= 185 theta= 4.132750 3.282031 15.524751 range=[-211.463 5.985]
config 7/15=[ 1.91 0.00 0.00] log(rel.dens)= 4.87, [0] accept, compute, 908.25s
config 8/15=[ 1.10 3.37 -8.50] log(rel.dens)= 7.27, [3] accept, compute, 858.83s
config 9/15=[ -0.85 3.37 -8.50] log(rel.dens)= 9.28, [2] accept, compute, 860.25s
config 10/15=[ -0.00 0.00 -14.72] log(rel.dens)=17.13, [1] accept, compute, 857.35s
config 11/15=[ -1.47 0.00 0.00] log(rel.dens)= 7.77, [0] accept, compute, 851.88s
config 12/15=[ 1.10 -0.60 0.54] log(rel.dens)= 6.64, [2] accept, compute, 539.99s
config 13/15=[ -0.85 -0.60 0.54] log(rel.dens)= 5.15, [1] accept, compute, 539.53s
config 14/15=[ -0.00 5.84 0.00] log(rel.dens)= 2.79, [0] accept, compute, 539.15s
Combine the densities with relative weights:
config 0/15=[ 0.00 0.00 0.00] weight = 0.000 neff = 2273.43
config 1/15=[ 1.91 0.00 0.00] weight = 0.000 neff = 2253.21
config 2/15=[ -1.47 0.00 0.00] weight = 0.000 neff = 2288.88
config 3/15=[ -0.00 5.84 0.00] weight = 0.000 neff = 2252.65
config 4/15=[ 0.00 -1.04 -0.00] weight = 0.000 neff = 2277.24
config 5/15=[ -0.00 -0.00 0.94] weight = 0.000 neff = 2279.11
config 6/15=[ -0.00 0.00 -14.72] weight = 1.000 neff = 2180.25
config 7/15=[ -0.85 -0.60 0.54] weight = 0.000 neff = 2287.75
config 8/15=[ -0.85 -0.60 -8.50] weight = 0.639 neff = 2232.17
config 9/15=[ -0.85 3.37 0.54] weight = 0.000 neff = 2273.66
config 10/15=[ -0.85 3.37 -8.50] weight = 0.000 neff = 2217.39
config 11/15=[ 1.10 -0.60 0.54] weight = 0.000 neff = 2267.45
config 12/15=[ 1.10 -0.60 -8.50] weight = 0.008 neff = 2210.61
config 13/15=[ 1.10 3.37 0.54] weight = 0.000 neff = 2253.01
config 14/15=[ 1.10 3.37 -8.50] weight = 0.000 neff = 2195.62
Done.
Expected effective number of parameters: 2200.553(25.283), eqv.#replicates: 23.516
DIC:
Mean of Deviance................. 64358.9
Deviance at Mean................. 62196
Effective number of parameters... 2162.89
DIC.............................. 66521.8
Marginal likelihood: Integration -34238.132497 Gaussian-approx -34237.335247
Compute the marginal for each of the 3 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[2] using numerical integration...
Compute the marginal for theta[0] to theta[2] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba18157a89/Model.ini]
Preparations : 0.250 seconds
Approx inference: 3543.500 seconds [0.2|0.0|5.6|93.9|0.3]%
Output : 4.954 seconds
---------------------------------
Total : 3548.703 seconds
saveRDS(models_yrlytrnd_2016fix, "models_yrlytrnd_2016fix.rds")
formula_yrlytrnd_2016fix <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj, constr=TRUE) + f(bymID2, year, model="iid", constr=TRUE) + year + bin_2016
models_yrlytrnd_2016fix <- inla(formula_yrlytrnd_2016fix, family="poisson", data=BYM_data_yrly_agg, E=E, verbose=TRUE, control.compute=list(dic=TRUE), control.predictor=list(compute=TRUE))
saveRDS(models_yrlytrnd_2016fix, "models_yrlytrnd_2016fix.rds")
BYM_data_yrly_agg$bymID3 <- BYM_data_yrly_agg$bymID2
formula_yrlytrnd_2016fix2 <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj, constr=TRUE) + f(bymID2, year, model="iid", constr=TRUE) + f(bymID3, bin_2016, model="iid", constr=TRUE) + year + bin_2016
models_yrlytrnd_2016fix2 <- inla(formula_yrlytrnd_2016fix2, family="poisson", data=BYM_data_yrly_agg, E=E, verbose=TRUE, control.compute=list(dic=TRUE), control.predictor=list(compute=TRUE))
hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Report bugs to <help@r-inla.org>
Processing file [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/Model.ini] max_threads=[4]
inla_build...
number of sections=[12]
parse section=[0] name=[INLA.libR] type=[LIBR]
inla_parse_libR...
section[INLA.libR]
R_HOME=[/Library/Frameworks/R.framework/Resources]
parse section=[11] name=[INLA.Expert] type=[EXPERT]
inla_parse_expert...
section[INLA.Expert]
disable.gaussian.check=[0]
cpo.manual=[0]
jp.Rfile=[(null)]
jp.RData=NULL
jp.func=[(null)]
parse section=[1] name=[INLA.Model] type=[PROBLEM]
inla_parse_problem...
name=[INLA.Model]
openmp.strategy=[default]
store results in directory=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/results.files]
output:
cpo=[0]
po=[0]
dic=[1]
kld=[1]
mlik=[1]
q=[0]
graph=[0]
gdensity=[0]
hyperparameters=[1]
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[3] name=[Predictor] type=[PREDICTOR]
inla_parse_predictor ...
section=[Predictor]
dir=[predictor]
PRIOR->name=[loggamma]
hyperid=[53001|Predictor]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 1e-05]
initialise log_precision[12]
fixed=[1]
user.scale=[1]
n=[51748]
m=[0]
ndata=[51748]
compute=[1]
read offsets from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 0/51748 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 1/51748 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 2/51748 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 3/51748 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 4/51748 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 5/51748 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 6/51748 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 7/51748 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 8/51748 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 9/51748 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 10/51748 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 11/51748 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 12/51748 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 13/51748 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 14/51748 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 15/51748 (idx,y) = (15, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 16/51748 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 17/51748 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 18/51748 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba7c2e4dc2] 19/51748 (idx,y) = (19, 0)
Aext=[(null)]
AextPrecision=[1e+08]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[2] name=[INLA.Data1] type=[DATA]
inla_parse_data [section 1]...
tag=[INLA.Data1]
family=[POISSON]
likelihood=[POISSON]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba5fc2c902]
file->name=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba6d1ad36b]
read n=[155244] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba5fc2c902]
0/51748 (idx,a,y,d) = (0, 0.872178, 0, 1)
1/51748 (idx,a,y,d) = (1, 0.872178, 1, 1)
2/51748 (idx,a,y,d) = (2, 0.872178, 0, 1)
3/51748 (idx,a,y,d) = (3, 0.872178, 0, 1)
4/51748 (idx,a,y,d) = (4, 0.872178, 0, 1)
5/51748 (idx,a,y,d) = (5, 0.872178, 1, 1)
6/51748 (idx,a,y,d) = (6, 0.872178, 1, 1)
7/51748 (idx,a,y,d) = (7, 0.872178, 0, 1)
8/51748 (idx,a,y,d) = (8, 0.872178, 0, 1)
9/51748 (idx,a,y,d) = (9, 0.872178, 1, 1)
10/51748 (idx,a,y,d) = (10, 0.872178, 0, 1)
11/51748 (idx,a,y,d) = (11, 0.872178, 1, 1)
12/51748 (idx,a,y,d) = (12, 0.872178, 1, 1)
13/51748 (idx,a,y,d) = (13, 0.872178, 5, 1)
14/51748 (idx,a,y,d) = (14, 0.872178, 1, 1)
15/51748 (idx,a,y,d) = (15, 0.872178, 0, 1)
16/51748 (idx,a,y,d) = (16, 0.872178, 0, 1)
17/51748 (idx,a,y,d) = (17, 0.287131, 0, 1)
18/51748 (idx,a,y,d) = (18, 0.287131, 0, 1)
19/51748 (idx,a,y,d) = (19, 0.287131, 0, 1)
likelihood.variant=[0]
Link model [LOG]
Link order [-1]
Link variant [-1]
Link ntheta [0]
mix.use[0]
parse section=[7] name=[bymID] type=[FFIELD]
inla_parse_ffield...
section=[bymID]
dir=[random.effect00000001]
model=[bym]
PRIOR0->name=[loggamma]
hyperid=[10001|bymID]
PRIOR0->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR0->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR0->PARAMETERS0=[1, 0.0005]
PRIOR1->name=[loggamma]
hyperid=[10002|bymID]
PRIOR1->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR1->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR1->PARAMETERS1=[1, 0.0005]
correct=[-1]
constr=[0]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 0/51748 (idx,y) = (0, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 1/51748 (idx,y) = (1, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 2/51748 (idx,y) = (2, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 3/51748 (idx,y) = (3, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 4/51748 (idx,y) = (4, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 5/51748 (idx,y) = (5, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 6/51748 (idx,y) = (6, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 7/51748 (idx,y) = (7, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 8/51748 (idx,y) = (8, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 9/51748 (idx,y) = (9, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 10/51748 (idx,y) = (10, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 11/51748 (idx,y) = (11, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 12/51748 (idx,y) = (12, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 13/51748 (idx,y) = (13, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 14/51748 (idx,y) = (14, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 15/51748 (idx,y) = (15, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 16/51748 (idx,y) = (16, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 17/51748 (idx,y) = (17, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 18/51748 (idx,y) = (18, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1820baff] 19/51748 (idx,y) = (19, 23)
read graph from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba4fe601c6]
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba325c7a57]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
initialise log_precision (iid component)[4]
fixed=[0]
initialise log_precision (spatial component)[4]
fixed=[0]
adjust.for.con.comp[1]
scale.model[0]
read extra constraint from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2bacd4c7b9]
Constraint[0]
A[3044] = 1.000000
A[3045] = 1.000000
A[3046] = 1.000000
A[3047] = 1.000000
A[3048] = 1.000000
A[3049] = 1.000000
A[3050] = 1.000000
A[3051] = 1.000000
A[3052] = 1.000000
A[3053] = 1.000000
A[3054] = 1.000000
A[3055] = 1.000000
A[3056] = 1.000000
A[3057] = 1.000000
A[3058] = 1.000000
A[3059] = 1.000000
A[3060] = 1.000000
A[3061] = 1.000000
A[3062] = 1.000000
A[3063] = 1.000000
A[3064] = 1.000000
e[0] = 0.000000
rank-deficiency is *defined* [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[8] name=[bymID2] type=[FFIELD]
inla_parse_ffield...
section=[bymID2]
dir=[random.effect00000002]
model=[iid]
PRIOR->name=[loggamma]
hyperid=[1001|bymID2]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 5e-05]
correct=[-1]
constr=[1]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 0/51748 (idx,y) = (0, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 1/51748 (idx,y) = (1, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 2/51748 (idx,y) = (2, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 3/51748 (idx,y) = (3, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 4/51748 (idx,y) = (4, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 5/51748 (idx,y) = (5, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 6/51748 (idx,y) = (6, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 7/51748 (idx,y) = (7, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 8/51748 (idx,y) = (8, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 9/51748 (idx,y) = (9, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 10/51748 (idx,y) = (10, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 11/51748 (idx,y) = (11, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 12/51748 (idx,y) = (12, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 13/51748 (idx,y) = (13, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 14/51748 (idx,y) = (14, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 15/51748 (idx,y) = (15, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 16/51748 (idx,y) = (16, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 17/51748 (idx,y) = (17, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 18/51748 (idx,y) = (18, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba411b0e6] 19/51748 (idx,y) = (19, 23)
read weights from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 0/51748 (idx,y) = (0, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 1/51748 (idx,y) = (1, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 2/51748 (idx,y) = (2, 2003)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 3/51748 (idx,y) = (3, 2004)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 4/51748 (idx,y) = (4, 2005)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 5/51748 (idx,y) = (5, 2006)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 6/51748 (idx,y) = (6, 2007)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 7/51748 (idx,y) = (7, 2008)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 8/51748 (idx,y) = (8, 2009)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 9/51748 (idx,y) = (9, 2010)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 10/51748 (idx,y) = (10, 2011)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 11/51748 (idx,y) = (11, 2012)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 12/51748 (idx,y) = (12, 2013)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 13/51748 (idx,y) = (13, 2014)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 14/51748 (idx,y) = (14, 2015)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 15/51748 (idx,y) = (15, 2016)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 16/51748 (idx,y) = (16, 2017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 17/51748 (idx,y) = (17, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 18/51748 (idx,y) = (18, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2574ce20] 19/51748 (idx,y) = (19, 2003)
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba57e9725]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
cyclic=[0]
initialise log_precision[4]
fixed=[0]
computed/guessed rank-deficiency = [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
parse section=[9] name=[bymID3] type=[FFIELD]
inla_parse_ffield...
section=[bymID3]
dir=[random.effect00000003]
model=[iid]
PRIOR->name=[loggamma]
hyperid=[1001|bymID3]
PRIOR->from_theta=[function (x) <<NEWLINE>>exp(x)]
PRIOR->to_theta = [function (x) <<NEWLINE>>log(x)]
PRIOR->PARAMETERS=[1, 5e-05]
correct=[-1]
constr=[1]
diagonal=[1.01511e-05]
id.names=<not present>
compute=[1]
nrep=[1]
ngroup=[1]
read covariates from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 0/51748 (idx,y) = (0, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 1/51748 (idx,y) = (1, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 2/51748 (idx,y) = (2, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 3/51748 (idx,y) = (3, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 4/51748 (idx,y) = (4, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 5/51748 (idx,y) = (5, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 6/51748 (idx,y) = (6, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 7/51748 (idx,y) = (7, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 8/51748 (idx,y) = (8, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 9/51748 (idx,y) = (9, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 10/51748 (idx,y) = (10, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 11/51748 (idx,y) = (11, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 12/51748 (idx,y) = (12, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 13/51748 (idx,y) = (13, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 14/51748 (idx,y) = (14, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 15/51748 (idx,y) = (15, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 16/51748 (idx,y) = (16, 22)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 17/51748 (idx,y) = (17, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 18/51748 (idx,y) = (18, 23)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2fad934b] 19/51748 (idx,y) = (19, 23)
read weights from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 0/51748 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 1/51748 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 2/51748 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 3/51748 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 4/51748 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 5/51748 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 6/51748 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 7/51748 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 8/51748 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 9/51748 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 10/51748 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 11/51748 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 12/51748 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 13/51748 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 14/51748 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 15/51748 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 16/51748 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 17/51748 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 18/51748 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba2ca13961] 19/51748 (idx,y) = (19, 0)
file for locations=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba1788aa16]
nlocations=[3044]
locations[0]=[1]
locations[1]=[2]
locations[2]=[3]
locations[3]=[4]
locations[4]=[5]
locations[5]=[6]
locations[6]=[7]
locations[7]=[8]
locations[8]=[9]
locations[9]=[10]
locations[10]=[11]
locations[11]=[12]
locations[12]=[13]
locations[13]=[14]
locations[14]=[15]
locations[15]=[16]
locations[16]=[17]
locations[17]=[18]
locations[18]=[19]
locations[19]=[20]
cyclic=[0]
initialise log_precision[4]
fixed=[0]
computed/guessed rank-deficiency = [1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[4] name=[(Intercept)] type=[LINEAR]
inla_parse_linear...
section[(Intercept)]
dir=[fixed.effect00000001]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 0/51748 (idx,y) = (0, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 1/51748 (idx,y) = (1, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 2/51748 (idx,y) = (2, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 3/51748 (idx,y) = (3, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 4/51748 (idx,y) = (4, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 5/51748 (idx,y) = (5, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 6/51748 (idx,y) = (6, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 7/51748 (idx,y) = (7, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 8/51748 (idx,y) = (8, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 9/51748 (idx,y) = (9, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 10/51748 (idx,y) = (10, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 11/51748 (idx,y) = (11, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 12/51748 (idx,y) = (12, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 13/51748 (idx,y) = (13, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 14/51748 (idx,y) = (14, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 15/51748 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 16/51748 (idx,y) = (16, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 17/51748 (idx,y) = (17, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 18/51748 (idx,y) = (18, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba43f33b3f] 19/51748 (idx,y) = (19, 1)
prior mean=[0]
prior precision=[0]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[5] name=[year] type=[LINEAR]
inla_parse_linear...
section[year]
dir=[fixed.effect00000002]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 0/51748 (idx,y) = (0, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 1/51748 (idx,y) = (1, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 2/51748 (idx,y) = (2, 2003)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 3/51748 (idx,y) = (3, 2004)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 4/51748 (idx,y) = (4, 2005)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 5/51748 (idx,y) = (5, 2006)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 6/51748 (idx,y) = (6, 2007)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 7/51748 (idx,y) = (7, 2008)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 8/51748 (idx,y) = (8, 2009)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 9/51748 (idx,y) = (9, 2010)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 10/51748 (idx,y) = (10, 2011)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 11/51748 (idx,y) = (11, 2012)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 12/51748 (idx,y) = (12, 2013)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 13/51748 (idx,y) = (13, 2014)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 14/51748 (idx,y) = (14, 2015)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 15/51748 (idx,y) = (15, 2016)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 16/51748 (idx,y) = (16, 2017)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 17/51748 (idx,y) = (17, 2001)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 18/51748 (idx,y) = (18, 2002)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba15b6c7f3] 19/51748 (idx,y) = (19, 2003)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
section=[6] name=[bin_2016] type=[LINEAR]
inla_parse_linear...
section[bin_2016]
dir=[fixed.effect00000003]
file for covariates=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8]
read n=[103496] entries from file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8]
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 0/51748 (idx,y) = (0, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 1/51748 (idx,y) = (1, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 2/51748 (idx,y) = (2, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 3/51748 (idx,y) = (3, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 4/51748 (idx,y) = (4, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 5/51748 (idx,y) = (5, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 6/51748 (idx,y) = (6, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 7/51748 (idx,y) = (7, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 8/51748 (idx,y) = (8, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 9/51748 (idx,y) = (9, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 10/51748 (idx,y) = (10, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 11/51748 (idx,y) = (11, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 12/51748 (idx,y) = (12, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 13/51748 (idx,y) = (13, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 14/51748 (idx,y) = (14, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 15/51748 (idx,y) = (15, 1)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 16/51748 (idx,y) = (16, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 17/51748 (idx,y) = (17, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 18/51748 (idx,y) = (18, 0)
file=[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/data.files/file2ba13012da8] 19/51748 (idx,y) = (19, 0)
prior mean=[0]
prior precision=[0.001]
compute=[1]
output:
summary=[1]
return.marginals=[1]
nquantiles=[3] [ 0.025 0.5 0.975 ]
ncdf=[0] [ ]
Index table: number of entries[7], total length[63927]
tag start-index length
Predictor 0 51748
bymID 51748 6088
bymID2 57836 3044
bymID3 60880 3044
(Intercept) 63924 1
year 63925 1
bin_2016 63926 1
parse section=[10] name=[INLA.Parameters] type=[INLA]
inla_parse_INLA...
section[INLA.Parameters]
lincomb.derived.only = [Yes]
lincomb.derived.correlation.matrix = [No]
global_node.factor = 2.000
global_node.degree = 2147483647
reordering = -1
Contents of ai_param 0x7f8a5be12160
Optimiser: DEFAULT METHOD
Option for domin-BFGS: epsx = 0.005
Option for domin-BFGS: epsf = 1e-05 (rounding error)
Option for domin-BFGS: epsg = 0.005
Option for GSL-BFGS2: tol = 0.1
Option for GSL-BFGS2: step_size = 1
Option for GSL-BFGS2: epsx = 0.005
Option for GSL-BFGS2: epsf = 0.000353553
Option for GSL-BFGS2: epsg = 0.005
Restart: 0
Mode known: No
Gaussian approximation:
abserr_func = 0.0005
abserr_step = 0.0005
optpar_fp = 0
optpar_nr_step_factor = -0.1
Gaussian data: No
Strategy: Use a mean-skew corrected Gaussian by fitting a Skew-Normal
Fast mode: On
Use linear approximation to log(|Q +c|)? Yes
Method: Compute the derivative exact
Parameters for improved approximations
Number of points evaluate: 9
Step length to compute derivatives numerically: 0.000100002
Stencil to compute derivatives numerically: 5
Cutoff value to construct local neigborhood: 0.0001
Log calculations: On
Log calculated marginal for the hyperparameters: On
Integration strategy: Automatic (GRID for dim(theta)=1 and 2 and otherwise CCD)
f0 (CCD only): 1.100000
dz (GRID only): 0.750000
Adjust weights (GRID only): On
Difference in log-density limit (GRID only): 6.000000
Skip configurations with (presumed) small density (GRID only): On
Gradient is computed using Central difference with step-length 0.010000
Hessian is computed using Central difference with step-length 0.100000
Hessian matrix is forced to be a diagonal matrix? [No]
Compute effective number of parameters? [Yes]
Perform a Monte Carlo error-test? [No]
Interpolator [Auto]
CPO required diff in log-density [3]
Stupid search mode:
Status [On]
Max iter [1000]
Factor [1.05]
Numerical integration of hyperparameters:
Maximum number of function evaluations [100000]
Relative error ....................... [1e-05]
Absolute error ....................... [1e-06]
To stabilise the numerical optimisation:
Minimum value of the -Hessian [-inf]
CPO manual calculation[No]
Laplace-correction is Disabled.
inla_build: check for unused entries in[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/Model.ini]
inla_INLA...
Strategy = [DEFAULT]
Size is [63927]
Chose OpenMP-strategy [HUGE]
Chose density-strategy [LOW]
Size of graph=[63927] constraints=[3]
Found optimal reordering=[amdc] nnz(L)=[355114] and use_global_nodes(user)=[no]
List of hyperparameters:
theta[0] = [Log precision for bymID (idd component)]
theta[1] = [Log precision for bymID (spatial component)]
theta[2] = [Log precision for bymID2]
theta[3] = [Log precision for bymID3]
Optimise using DEFAULT METHOD
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -52708.637555 fn= 1 theta= 4.000000 4.000000 3.990000 4.000000 range=[-2.345 7.173]
max.logdens= -52693.553167 fn= 2 theta= 3.990000 4.000000 4.000000 4.000000 range=[-2.345 7.173]
max.logdens= -52678.188055 fn= 3 theta= 4.000000 4.000000 4.010000 4.000000 range=[-2.345 7.173]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -51170.599800 fn= 9 theta= 4.009175 4.001661 4.999956 4.000727 range=[-2.345 7.172]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -51155.375482 fn= 10 theta= 4.009175 4.001661 5.009956 4.000727 range=[-2.345 7.172]
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...
file: smtp-taucs.c hgid: 29c6a7f1b1ff date: Thu Jun 15 19:50:23 2017 +0800
Function: GMRFLib_build_sparse_matrix_TAUCS(), Line: 712, Thread: 0
Variable evaluates to NAN or INF. idx=(12716,12716). I will try to fix it...max.logdens= -34772.957996 fn= 18 theta= 4.091749 4.016612 13.999563 4.007273 range=[-211.294 13.849]
max.logdens= -34772.417367 fn= 19 theta= 4.081749 4.016612 13.999563 4.007273 range=[-211.322 13.849]
max.logdens= -34767.571252 fn= 20 theta= 4.101749 4.016612 13.999563 4.007273 range=[-211.329 13.848]
max.logdens= -34762.357670 fn= 22 theta= 4.091749 4.016612 14.009563 4.007273 range=[-211.304 13.716]
max.logdens= -34481.286289 fn= 28 theta= 4.095878 4.017360 14.449543 4.007600 range=[-211.350 9.020]
max.logdens= -34477.119290 fn= 29 theta= 4.085878 4.017360 14.449543 4.007600 range=[-211.345 9.021]
max.logdens= -34474.353873 fn= 33 theta= 4.095878 4.017360 14.459543 4.007600 range=[-211.346 8.936]
max.logdens= -34298.874284 fn= 37 theta= 4.099800 4.018070 14.877024 4.007911 range=[-211.366 6.080]
max.logdens= -34297.855937 fn= 38 theta= 4.109800 4.018070 14.877024 4.007911 range=[-211.371 6.079]
max.logdens= -34297.167917 fn= 42 theta= 4.099800 4.028070 14.877024 4.007911 range=[-211.368 6.079]
max.logdens= -34237.078974 fn= 46 theta= 4.103527 4.018745 15.283132 4.008206 range=[-211.441 6.008]
max.logdens= -34234.651806 fn= 47 theta= 4.113527 4.018745 15.283132 4.008206 range=[-211.427 6.008]
max.logdens= -34234.564574 fn= 52 theta= 4.103527 4.008745 15.283132 4.008206 range=[-211.441 6.008]
Iter=1 |grad|=368 |x-x.old|=5.64 |f-f.old|=1.85e+04
max.logdens= -34230.655671 fn= 55 theta= 4.265673 3.483856 15.505960 4.806924 range=[-211.439 5.987]
max.logdens= -34219.821465 fn= 57 theta= 4.255673 3.483856 15.505960 4.806924 range=[-211.451 5.987]
Iter=2 |grad|=750 |x-x.old|=0.5 |f-f.old|=6.42
Iter=3 |grad|=141 |x-x.old|=0.0201 |f-f.old|=2.45 Reached numerical limit!
Number of function evaluations = 98
Compute the Hessian using central differences and step_size[0.1]. Matrix-type [dense]
max.logdens= -34219.305969 fn= 104 theta= 4.257060 3.471567 15.409476 4.844094 range=[-211.444 5.996]
Mode not sufficient accurate; switch to a stupid local search strategy.
max.logdens= -34218.847285 fn= 108 theta= 4.257060 3.471567 15.409476 4.739094 range=[-211.449 5.996]
max.logdens= -34212.160722 fn= 109 theta= 4.257060 3.471567 15.409476 4.949094 range=[-211.447 5.996]
max.logdens= -34210.952215 fn= 110 theta= 4.257060 3.366567 15.409476 4.844094 range=[-211.479 5.997]
max.logdens= -34204.536197 fn= 117 theta= 4.257060 3.256317 15.409476 4.844094 range=[-211.462 5.997]
max.logdens= -34198.265855 fn= 129 theta= 4.257060 3.140555 15.409476 4.844094 range=[-211.461 5.997]
max.logdens= -34196.607663 fn= 135 theta= 4.257060 3.019004 15.409476 4.844094 range=[-211.481 5.997]
max.logdens= -34192.600141 fn= 144 theta= 4.257060 3.019004 15.409476 4.716466 range=[-211.468 5.997]
max.logdens= -34190.172355 fn= 146 theta= 4.257060 2.891376 15.409476 4.844094 range=[-211.452 5.998]
max.logdens= -34189.241106 fn= 153 theta= 4.257060 2.891376 15.409476 4.710084 range=[-211.441 5.998]
max.logdens= -34186.141888 fn= 154 theta= 4.257060 2.891376 15.409476 4.978104 range=[-211.501 5.998]
max.logdens= -34182.486309 fn= 155 theta= 4.257060 2.757366 15.409476 4.844094 range=[-211.482 5.998]
max.logdens= -34175.423405 fn= 162 theta= 4.257060 2.616656 15.409476 4.844094 range=[-211.493 5.999]
max.logdens= -34173.800787 fn= 172 theta= 4.257060 2.468911 15.409476 4.844094 range=[-211.472 5.999]
max.logdens= -34165.641740 fn= 180 theta= 4.257060 2.313778 15.409476 4.844094 range=[-211.505 6.000]
max.logdens= -34163.761360 fn= 183 theta= 4.412193 2.468911 15.409476 4.844094 range=[-211.479 5.999]
max.logdens= -34161.956180 fn= 191 theta= 4.412193 2.306021 15.409476 4.844094 range=[-211.494 6.000]
max.logdens= -34154.746411 fn= 198 theta= 4.412193 2.134987 15.409476 4.844094 range=[-211.458 6.000]
max.logdens= -34152.736699 fn= 207 theta= 4.412193 2.134987 15.409476 4.664508 range=[-211.506 6.000]
max.logdens= -34143.341837 fn= 208 theta= 4.412193 1.955402 15.409476 4.844094 range=[-211.524 6.001]
max.logdens= -34142.952731 fn= 216 theta= 4.412193 1.955402 15.409476 4.655529 range=[-211.492 6.001]
max.logdens= -34134.345686 fn= 217 theta= 4.412193 1.766837 15.409476 4.844094 range=[-211.528 6.002]
max.logdens= -34130.967613 fn= 225 theta= 4.412193 1.766837 15.409476 4.646101 range=[-211.515 6.002]
max.logdens= -34127.262385 fn= 227 theta= 4.412193 1.568843 15.409476 4.844094 range=[-211.559 6.004]
max.logdens= -34122.365296 fn= 234 theta= 4.412193 1.360951 15.409476 4.844094 range=[-211.537 6.005]
max.logdens= -34115.365997 fn= 243 theta= 4.412193 1.360951 15.409476 5.062381 range=[-211.598 6.005]
max.logdens= -34113.342255 fn= 245 theta= 4.412193 1.142663 15.409476 4.844094 range=[-211.596 6.007]
max.logdens= -34108.823657 fn= 252 theta= 4.412193 0.913461 15.409476 4.844094 range=[-211.621 6.009]
max.logdens= -34106.152930 fn= 263 theta= 4.412193 0.672799 15.409476 4.844094 range=[-211.614 6.012]
max.logdens= -34104.309306 fn= 273 theta= 4.412193 0.672799 15.409476 4.591399 range=[-211.598 6.012]
max.logdens= -34103.905461 fn= 283 theta= 4.412193 0.672799 15.409476 4.591399 range=[-211.650 6.012]
85.824406 10.599366 -0.604923 20.619301
10.599366 129.289004 26.287935 9.835819
-0.604923 26.287935 848.432300 26.653751
20.619301 9.835819 26.653751 119.095861
Eigenvectors of the Hessian
-0.000717 0.904698 -0.360653 0.226827
-0.036920 -0.111540 -0.713895 -0.690326
-0.998636 0.018658 0.048766 -0.000037
-0.036914 -0.410770 -0.598252 0.687022
Eigenvalues of the Hessian
850.388986
75.143130
141.090508
116.018946
StDev/Correlation matrix (scaled inverse Hessian)
0.110714 -0.088248 0.026333 -0.199017
0.088808 -0.075226 -0.053792
0.034557 -0.081702
0.094086
Compute corrected stdev for theta[0]: negative 0.908038 positive 0.456719
Compute corrected stdev for theta[1]: negative 0.503211 positive 1.512549
Compute corrected stdev for theta[2]: negative 0.902528 positive 0.741006
Compute corrected stdev for theta[3]: negative 1.400387 positive 0.561303
config 0/25=[ 0.50 -0.55 0.82 0.62] log(rel.dens)=-6.11, [3] accept, compute, 943.99s
config 1/25=[ -0.00 -0.00 -0.00 1.23] log(rel.dens)=-2.77, [1] accept, compute, 945.54s
config 2/25=[ 0.00 0.00 0.00 0.00] log(rel.dens)=-3.92, [0] accept, compute, 945.74s
config 3/25=[ -1.00 1.66 -0.99 0.62] log(rel.dens)= 0.12, [2] accept, compute, 946.77s
config 4/25=[ 1.00 0.00 0.00 -0.00] log(rel.dens)=-5.69, [0] accept, compute, 900.13s
config 5/25=[ 0.50 -0.55 0.82 -1.54] log(rel.dens)=-6.05, [3] accept, compute, 901.40s
config 6/25=[ -1.00 1.66 -0.99 -1.54] log(rel.dens)=-5.31, [2] accept, compute, 899.40s
config 7/25=[ -0.00 -0.00 0.00 -3.08] log(rel.dens)=-4.16, [1] accept, compute, 901.24s
config 8/25=[ -1.00 1.66 0.82 0.62] log(rel.dens)=-2.95, [2] accept, compute, 898.19s
config 9/25=[ -2.00 0.00 0.00 -0.00] log(rel.dens)=-2.15, [0] accept, compute, 898.82s
config 10/25=[ 0.50 1.66 -0.99 0.62] log(rel.dens)=-5.26, [3] accept, compute, 900.20s
config 11/25=[ -1.00 -0.55 -0.99 0.62] log(rel.dens)=-3.89, [1] accept, compute, 902.68s
config 12/25=[ 0.00 3.33 0.00 -0.00] log(rel.dens)=-1.66, [0] accept, compute, 889.43s
config 13/25=[ -1.00 1.66 0.82 -1.54] log(rel.dens)=-2.56, [2] accept, compute, 890.03s
config 14/25=[ 0.50 1.66 -0.99 -1.54] log(rel.dens)=-5.65, [3] accept, compute, 892.37s
config 15/25=[ -1.00 -0.55 -0.99 -1.54] log(rel.dens)=-0.29, [1] accept, compute, 892.24s
config 16/25=[ -0.00 -1.11 -0.00 0.00] log(rel.dens)=-7.00, [0] accept, compute, 897.61s
config 17/25=[ 0.50 -0.55 -0.99 0.62] log(rel.dens)=-5.92, [2] accept, compute, 898.77s
config 18/25=[ 0.50 1.66 0.82 0.62] log(rel.dens)=-2.45, [3] accept, compute, 897.36s
config 19/25=[ -1.00 -0.55 0.82 0.62] log(rel.dens)=-2.73, [1] accept, compute, 899.75s
max.logdens= -34103.534030 fn= 345 theta= 4.297259 0.730923 15.445842 4.479587 range=[-211.647 6.009]
config 20/25=[ 0.50 -0.55 -0.99 -1.54] log(rel.dens)=-3.65, [2] accept, compute, 896.48s
config 21/25=[ 0.00 0.00 1.63 -0.00] log(rel.dens)=-5.26, [0] accept, compute, 899.10s
config 22/25=[ 0.50 1.66 0.82 -1.54] log(rel.dens)=-3.60, [3] accept, compute, 897.27s
config 23/25=[ -1.00 -0.55 0.82 -1.54] log(rel.dens)= 1.91, [1] accept, compute, 894.56s
config 24/25=[ 0.00 -0.00 -1.99 0.00] log(rel.dens)=-6.25, [0] accept, compute, 407.32s
Combine the densities with relative weights:
config 0/25=[ 0.00 0.00 0.00 0.00] weight = 0.001 neff = 2272.19
config 1/25=[ 1.00 0.00 0.00 -0.00] weight = 0.000 neff = 2284.41
config 2/25=[ -2.00 0.00 0.00 -0.00] weight = 0.017 neff = 2247.56
config 3/25=[ 0.00 3.33 0.00 -0.00] weight = 0.028 neff = 2271.59
config 4/25=[ -0.00 -1.11 -0.00 0.00] weight = 0.000 neff = 2272.56
config 5/25=[ 0.00 0.00 1.63 -0.00] weight = 0.001 neff = 2275.29
config 6/25=[ 0.00 -0.00 -1.99 0.00] weight = 0.000 neff = 2269.05
config 7/25=[ -0.00 -0.00 -0.00 1.23] weight = 0.009 neff = 2274.84
config 8/25=[ -0.00 -0.00 0.00 -3.08] weight = 0.002 neff = 2266.81
config 9/25=[ -1.00 -0.55 -0.99 0.62] weight = 0.003 neff = 2259.63
config 10/25=[ -1.00 -0.55 -0.99 -1.54] weight = 0.111 neff = 2255.44
config 11/25=[ -1.00 -0.55 0.82 0.62] weight = 0.010 neff = 2263.11
config 12/25=[ -1.00 -0.55 0.82 -1.54] weight = 1.000 neff = 2258.41
config 13/25=[ -1.00 1.66 -0.99 0.62] weight = 0.166 neff = 2258.95
config 14/25=[ -1.00 1.66 -0.99 -1.54] weight = 0.001 neff = 2254.64
config 15/25=[ -1.00 1.66 0.82 0.62] weight = 0.008 neff = 2262.64
config 16/25=[ -1.00 1.66 0.82 -1.54] weight = 0.011 neff = 2257.80
config 17/25=[ 0.50 -0.55 -0.99 0.62] weight = 0.000 neff = 2278.11
config 18/25=[ 0.50 -0.55 -0.99 -1.54] weight = 0.004 neff = 2274.26
config 19/25=[ 0.50 -0.55 0.82 0.62] weight = 0.000 neff = 2281.29
config 20/25=[ 0.50 -0.55 0.82 -1.54] weight = 0.000 neff = 2276.96
config 21/25=[ 0.50 1.66 -0.99 0.62] weight = 0.001 neff = 2277.43
config 22/25=[ 0.50 1.66 -0.99 -1.54] weight = 0.001 neff = 2273.50
config 23/25=[ 0.50 1.66 0.82 0.62] weight = 0.013 neff = 2280.81
config 24/25=[ 0.50 1.66 0.82 -1.54] weight = 0.004 neff = 2276.38
Done.
Expected effective number of parameters: 2258.911(3.884), eqv.#replicates: 22.908
DIC:
Mean of Deviance................. 64154.9
Deviance at Mean................. 61937.7
Effective number of parameters... 2217.2
DIC.............................. 66372.1
Marginal likelihood: Integration -34111.256938 Gaussian-approx -34112.155016
Compute the marginal for each of the 4 hyperparameters
Interpolation method: Auto
Compute the marginal for theta[0] to theta[3] using numerical integration...
Compute the marginal for theta[0] to theta[3] using numerical integration... Done.
Compute the marginal for the hyperparameters... done.
Store results in directory[/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/results.files]
Wall-clock time used on [/var/folders/_f/c7x33pyd15d2nc0t0rwwn9tw0000gn/T//RtmpV37m8W/file2ba71dee1ed/Model.ini]
Preparations : 0.211 seconds
Approx inference: 6240.955 seconds [0.1|0.0|5.9|93.7|0.3]%
Output : 5.173 seconds
---------------------------------
Total : 6246.339 seconds
saveRDS(models_yrlytrnd_2016fix2, "models_yrlytrnd_2016fix2.rds")
library(readr)
write_csv(results_null, "~/Documents/Harvard - SM80/Thesis/Fortaleza_Hom_RGit_PRIVATE_Files/Spatiotemp_fit_values.csv")
formula_yrly_covar_notime <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj, constr=TRUE) + log_LII ....
formula_yrly_covar_notime <- inla(formula_yrly_covar_notime, family="poisson", data=BYM_data_yrly_agg, E=E, verbose=TRUE, control.compute=list(dic=TRUE), control.predictor=list(compute=TRUE))
saveRDS(formula_yrly_covar_notime, "formula_yrly_covar_notime.rds")
formula_yrly_covar_yrlytrnd <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj, constr=TRUE) + f(bymID2, year, model="iid", constr=TRUE) + year + log_LII ....
formula_yrly_covar_yrlytrnd <- inla(formula_yrly_covar_yrlytrnd, family="poisson", data=BYM_data_yrly_agg, E=E, verbose=TRUE, control.compute=list(dic=TRUE), control.predictor=list(compute=TRUE))
saveRDS(formula_yrly_covar_yrlytrnd, "formula_yrly_covar_yrlytrnd.rds")
formula_yrly_covar_yrlytrnd_fix <- y ~ 1 + f(bymID, model="bym",graph=CTs_adj, constr=TRUE) + f(bymID2, year, model="iid", constr=TRUE) + f(bymID3, bin_2016, model="iid", constr=TRUE) + year + bin_2016 + log_LII ....
formula_yrly_covar_yrlytrnd_fix <- inla(formula_yrly_covar_yrlytrnd, family="poisson", data=BYM_data_yrly_agg, E=E, verbose=TRUE, control.compute=list(dic=TRUE), control.predictor=list(compute=TRUE))
saveRDS(formula_yrly_covar_yrlytrnd_fix, "formula_yrly_covar_yrlytrnd_fix.rds")
SMR_cut_v1 <- function(column){
cut(column, breaks=c(-1, 0.5, 0.75, 1.0, 1.25, 1.50, 1.75, 2.0, 5.0, Inf),
labels=c("<0.5", "0.5-0.75",
"0.75-1.0", "1.0-1.25","1.25-1.50","1.5-1.75", "1.75-2.0",
"2.0-5.0", ">5.0"))
}
plot_fort_maps2 <- function(data, fill_str, legend_title){
require(ggplot2)
require(ggsn)
require(broom)
ggplot() + # initialize ggplot object
geom_polygon( # make a polygon
data = data, # data frame
aes_string(x = "long", y = "lat", group = "group", # coordinates, and group them by polygons
fill = fill_str),
size=0.1, color="black") + # variable to use for filling
scale_fill_brewer(name=legend_title, palette = "RdYlBu", direction = -1,
drop = FALSE) + # fill with brewer colors # add title
theme(line = element_blank(),
axis.text=element_blank(), # .. tickmarks..
axis.title=element_blank(),
legend.text=element_text(size=10),
legend.title=element_text(size=12), # .. axis labels..
panel.background = element_blank())
}
plot_fort_maps3 <- function(data, fill_str, legend_title){
require(ggplot2)
require(ggsn)
require(broom)
ggplot() + # initialize ggplot object
geom_polygon( # make a polygon
data = data, # data frame
aes_string(x = "long", y = "lat", group = "group", # coordinates, and group them by polygons
fill = fill_str),
size=0.1, color="black") + # variable to use for filling
scale_fill_brewer(name=legend_title, palette = "RdYlBu", direction = 1,
drop = FALSE) + # fill with brewer colors # add title
theme(line = element_blank(),
axis.text=element_blank(), # .. tickmarks..
axis.title=element_blank(),
legend.text=element_text(size=10),
legend.title=element_text(size=12), # .. axis labels..
panel.background = element_blank())
}